-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
executable file
·902 lines (797 loc) · 36.5 KB
/
welcome.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
<!doctype html>
<!--[if IE]><![endif]-->
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js generic"><!--<![endif]-->
<!-- Mirrored from www.medstar.in/ by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 13 May 2015 08:58:17 GMT -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="revisit-after" content="1 day" />
<meta name="google-site-verification" content="Tq5lFTdcmeG7V_3dWHT74k4q9i7SzJHdl58XlrmmqZQ" />
<meta name="msvalidate.01" content="F80ACB1CA53A1BC64A351B74DC6C1C3A" />
<meta name="msvalidate.01" content="6071FFD74CEEBCF261D717BA7B6CC80C" />
<!--[if IE 10 ]><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" ><![endif]-->
<title>Dial Medicines</title>
<meta name=Description content=We thrive in building online medical store in hyderabad to make it safe for customers on medicine online purchase by providing discounts with convenient home delivery./>
<meta name=Keywords content=online medical store, medicine online, online medicines, medicines online hyderabad, order online medicine hyderabad, discounts in hyderabad/>
</head>
<body>
<div id="wrapper">
<div id="header"><link href='http://fonts.googleapis.com/css?family=Ubuntu:400,300,500,700' rel='stylesheet' type='text/css' />
<link href="assets/css/layout_022015.css" rel='stylesheet' type='text/css' />
<!--link href="http://fonts.googleapis.com/css?family=Roboto:400,500,700,300,900" rel="stylesheet" type="text/css" />
<link href="assets/css/layout.css" rel='stylesheet' type='text/css' /-->
<link href="assets/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link href="assets/bootstrap/css/bootstrap-responsive.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="assets/css/style_1349.css" media="only all and (min-width: 1281px)"/>
<link rel="stylesheet" type="text/css" href="assets/css/style_1280.css" media="only all and (min-width: 1025px) and (max-width: 1280px)"/>
<link rel="stylesheet" type="text/css" href="assets/css/style_1024.css" media="only all and (min-width: 801px) and (max-width: 1024px)"/>
<link rel="stylesheet" type="text/css" href="assets/css/style_800.css" media="only all and (max-width: 800px)"/>
<!--<link href='http://fonts.googleapis.com/css?family=Magra:400,700|Asap:400,400italic,700,700italic' rel='stylesheet' type='text/css' />
-->
<link rel="icon" type="image/png" href="assets/images/favicon.png" />
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/png" />
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="images/favicon.html" type="image/gif" />
<script src="assets/js/jqmain/jquery-1.9.1.js" type="text/javascript"></script>
<script src="assets/js/jqmain/jquery-migrate-1.0.0.js" type="text/javascript"></script>
<script src="assets/js/jqmain/jquery-ui-1.10.2.custom.min.js" type="text/javascript"></script>
<script type="text/javascript" src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="assets/bootstrap/js/respond.min.js"></script>
<style type="text/css">
.btm-bar{padding:0;margin:0;}
#bottom_bar{margin-top:-15px;}
span#twitter_logo,span#facebook_logo{display:none!important;}
</style>
<!-- Media Query doesn't work for ie < 9 so applying jquery for resizing-->
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="/assets/css/style_1349.css" id="size-stylesheet"/>
<script type="text/javascript">
function adjustStyle(width) {
width = parseInt(width);
if (width > 701 && width <= 800) {
$("#size-stylesheet").attr("href", "assets/css/style_800.css");
} else if ((width > 800) && (width <= 1024)) {
$("#size-stylesheet").attr("href", "assets/css/style_1024.css");
} else if ((width > 1024) && (width <= 1280)){
$("#size-stylesheet").attr("href", "assets/css/style_1280.css");
}else if(width > 1280){
$("#size-stylesheet").attr("href", "assets/css/style_1349.css");
}
}
$(function(){
// here this contains window object
adjustStyle($(this).width());
//now putting a event handler on window ,whenever it's resized adjust style will be called
$(window).on('resize',function(){
adjustStyle($(this).width());
});
});
</script>
<![endif]-->
<script type="text/javascript">
function clearBoxes(){
//singup elements
$('#name').val('');
$('#mob').val('');
$('#email').val('');
//login elements
$('#mobile').val('');
$('#pin').val();
}
$(function() {
var width = $(this).width();
if(width > 1366 && width <= 1440){
$('#myModal').css({'left':'420px'});
}
else if(width > 1440 && width <= 1600){
$('#myModal').css({'left':'500px'});
}
else if(width > 1600 && width <= 1680){
$('#myModal').css({'left':'540px'});
}
else if(width > 1680 && width <= 1920){
$('#myModal').css({'left':'660px'});
}
if(width > 1280){
$('.img').not('#img2').on('mouseenter',function(){
$('#img2').css({'background':'url("/assets/images/home_1348_2.png") no-repeat scroll -195px -840px transparent'});
}).on('mouseleave',function(){
$('#img2').css({'background':'url("/assets/images/home_1348_2.png") no-repeat scroll -234px 2px transparent'})
});
}
else if((width > 1024) && (width <= 1280)){
$('.img').not('#img2').on('mouseenter',function(){
$('#img2').css({'background':'url("/assets/images/home_1280_2.png") no-repeat scroll -185px -798px transparent'});
}).on('mouseleave',function(){
$('#img2').css({'background':'url("/assets/images/home_1280_2.png") no-repeat scroll -221px 2px transparent'})
});
}else if((width > 800) && (width <= 1024)){
$('.img').not('#img2').on('mouseenter',function(){
$('#img2').css({'background':'url("/assets/images/home_1024_2.png") no-repeat scroll -143px -639px transparent'});
}).on('mouseleave',function(){
$('#img2').css({'background':'url("/assets/images/home_1024_2.png") no-repeat scroll -172px 0 transparent'})
});
}else if(width > 701 && width <= 800) {
$('.img').not('#img2').on('mouseenter',function(){
$('#img2').css({'background':'url("/assets/images/home_800_2.png") no-repeat scroll -107px -497px transparent'});
}).on('mouseleave',function(){
$('#img2').css({'background':'url("/assets/images/home_800_2.png") no-repeat scroll -129px 3px transparent'})
});
}
/*
// here this contains window object
adjustStyle($(this).width());
//now putting a event handler on window ,whenever it's resized adjust style will be called
$(window).on('resize',function(){
adjustStyle($(this).width());
});
*/
clearBoxes();
$('#signup_commit').on('click',function (){
var namePat = /^[^0-9.]([a-z.]||[A-Z]||\s)+$/;
var name = $('#name').val();
var email = $('#email').val();
var emailPat= /[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}/;
var mobile = $('#mob').val();
var mobilePat = /\d{10}/;
if(name == '' || !(namePat.test(name))){
alert('Please enter a valid name');
$('#name').focus().val('');
return false;
}
if(mobile == '' || !(mobilePat.test(mobile))){
alert('Please enter a valid mobile number');
$('#mob').focus().val('');
return false;
}
if(email == '' || !(emailPat.test(email))){
alert('Please enter a valid email id');
$('#email').focus().val('');
return false;
}
$("#Signup").submit(signup);
});
});
function signup(){
$.ajax({
type: "post",
dataType: "",
url: "/welcome/signup",
data: $("#Signup").serialize(),
beforeSend:function(){
$('#myModal').hide();
clearBoxes();
$('#loaderDiv').show();
},
success: function(response) {
//alert(response);
$("#loaderDiv").hide();
if(response == 'error-email'){
var content = '<span>'+
'<h5 style="font-family: sans-serif;color:#005AAB;line-height:130%;text-align:left;font-size:16px;margin-top:0px;margin-left:30px;">This email is already registered.</h5>'+
'</span>';
$("#signupFailure").html(content).show().fadeOut(3000);//.closest('.dropdown-menu').fadeOut(6000);
//setTimeout(function(){$('#myModal').modal('hide');},3000);
}else if(response == 'error-mobile'){
var content = '<span>'+
'<h5 style="font-family: sans-serif;color:#005AAB;line-height:130%;text-align:left;font-size:16px;margin-top:0px;margin-left:0px;">This mobile number is already registered.</h5>'+
'</span>';
$("#signupFailure").html(content).show().fadeOut(3000);//.closest('.dropdown-menu').fadeOut(6000);
setTimeout(function(){$('#myModal').modal('hide');},3000);
}
else if(response != 'error')
$("#signupSuccess").show().fadeOut(10000)//.closest('.dropdown-menu').fadeOut(6000);
setTimeout(function(){$('#myModal').modal('hide');},3000);
}
});
return false;
}
function forgot_password(){
//'#myModal').modal('hide');},1000);
}
/**/
/**/
$(function(){
$("#fpwd").submit(function(e){
e.preventDefault();
$('#forgotModal').hide();
mobile = $("#mobile_id").val();
if(mobile != ''){
//$("#error_Div").text("Sending password to the given mobile number ...");
$('div#error_Div1 > span h5').html('Sending password to the given mobile number ...');
$('div#error_Div1').css({'width':'370px'}).show();
$.ajax({
type: "POST",
url: "/index.php/welcome/forgotPin",
data: {'mob': mobile},
success: function(data){
if(data.suc == null){
$('div#error_Div1 > span h5').html('Password sent successfully to the given mobile number.');
$('div#error_Div1').css({'width':'435px'}).show().fadeOut(5000);
setTimeout(function(){$('.modal-backdrop').hide();},5000);
setTimeout(function(){window.location.reload(1);}, 5000);
//$("#Test").trigger("click");
}else if(data.suc == false){
$('div#error_Div1 > span h5').html('The mobile number is not found. Please signup.');
$('div#error_Div1').css({'width':'370px','height' : '40px'}).show().fadeOut(5000);
setTimeout(function(){$('.modal-backdrop').hide();},5000);
setTimeout(function(){window.location.reload(1);}, 5000);
}
},
dataType: 'json'
});
}else{
alert("Please enter mobile number in the field below and click on forgot password");
$('.modal-backdrop').hide();
}
clearBoxes();
});
});
</script>
</div>
<div></div>
<div id="container"><script type="text/javascript">
$(function(){
//login code
$("#login").on('click',function(){
//alert('clicked');
login();
});
$('#pin').bind('keypress', function(e){
if(e.keyCode == 13){
login();
}
});
});
function clearBoxes(){
//login elements
$('#mobile').val('');
$('#pin').val('');
}
function login(){
var mobile = $("#mobile").val();
var pin = $("#pin").val();
var mobilePat = /\d{10}/;
if(mobile == ''){
alert('please enter a mobile Number');
$('#mobile').focus();
return false;
}else if(!(mobilePat.test(mobile))){
alert('please enter a valid mobile Number');
$('#mobile').focus();
return false;
}
if(pin == ''){
alert('please enter a valid pin');
$('#pin').focus();
return false;
}
// alert(mobile+', '+pin);
if((pin != '') && (mobile != '')){
$.post(
"/index.php/welcome/checkPin",
{'mob': mobile, 'pin' : pin},
function(data){
if(data){
document.formLogin.submit();
}else {
$("div#error_Div1 > span h5").html("Invalid Mobile number or password.");
$("div#error_Div1").show().fadeOut(3000);
clearBoxes();
}
});
/*$.ajax(
type : "POST",
url: "/index.php/welcome/checkPin",
data : {'mob': mobile, 'pin' : pin},
success: function(data, responseCode, jqXHR){
alert('hi');
},
error: function(data, responseCode, jqXHR){
});*/
clearBoxes();
}
else {
$("div#error_Div1 > span h5").html('Please Enter both Pin & Mobile.');
$("div#error_Div1").show().fadeOut(3000);
}
}
jQuery(document).ready(function($) {
$('#myModal').hide();
$('#loginModal').hide();
$('#forgotModal').hide();
});
</script>
<div style="position: relative;z-index:99999;">
<div id="loaderDiv"><img src="assets/images/ajax_loader.gif" width="128" height="15"/></div>
<div id="signupSuccess">
<span style="font-family: sans-serif;">
<h5>
</h5>
</span>
</div>
<!--div id="signupFailure">
<span style="font-family: sans-serif;">
<h5>This mobile number is already registered.</h5>
</span>
</div-->
<div id="error_Div">
<span style="font-family: sans-serif;">
<h5>This mobile number is already registered.</h5>
</span>
</div>
<div id="error_Div1" style="display:none;">
<span style="font-family: sans-serif;">
<h5>This mobile number is already registered.</h5>
</span>
</div>
</div>
<!-- Login Modal starts here -->
<div id="loginModal" class="hide fade" tabindex="-1">
<!--<span></span>-->
<div id='close' aria-hidden="true" class="loginpopup" style="">
<a href="#" style="background:url(assets/images/cancel.png) no-repeat right top; float:right; width:25px; height:25px; text-indent:-9999px; right:-13px; top:-13px; position:absolute;" data-dismiss="modal">CloseHere</a>
<!--form id='Signup' name='Signup' action="/welcome/signup" method="post" accept-charset="UTF-8"-->
<div id="login_container">
<!--div id="top">
<span id="text">Already a medstar user? Login here</span>
<span id="twitter_logo"></span>
<span id="facebook_logo"></span>
<div style="clear:both;"></div>
</div-->
<div>Already a Dial Medicines user? Login here</div>
<div id="my_login">
<form class="loginform" method="post">
<label id="mobile_label">Mobile</label>
<input type="text" id="mobile" name="mobile" />
<label id="pin_label">Pin</label>
<input type="password" id="pin" name="pin" />
<!--input type="button" id="login" name="login" class="btn btn-primary" value="Login" /-->
<input type="button" id="login" name="login" class="btn btn-primary" value="Login" />
<div data-toggle="modal" id="not_reg">Not Yet Registered?</div>
<div data-toggle="modal" data-target="#forgotModal" id="forgot_pwd">Forgot Password ?</div>
</form>
</div>
</div>
</div>
</div>
<!-- Login Modal starts here -->
<!--div id="myModal" class="hide fade" tabindex="-1">
<div id='close' data-dismiss="modal" aria-hidden="true" style="position:absolute;background:url(/assets/images/cancel.png);width:22px;height:22px;top:5px;right:5px;z-index:99991;cursor:pointer;"></div>
<form id='Signup' name='Signup' action="/welcome/signup" method="post" accept-charset="UTF-8">
<div style="float:left;">
<label>Name</label>
<input style="margin-bottom:15px!important;" type="text" placeholder="Enter your Name" class="txtbox1" pattern="^[^0-9.]([a-z.]||[A-Z]||\s)+$" name="name" id="name" value="" required/>
<label>Mobile </label>
<input style="margin-bottom:15px!important;" type='tel' id="mob" pattern='\d{10}' title='Phone Number (Format: 9999999999)' placeholder="Enter your Mobile Number" name='mob' required/>
<label>Email </label>
<input style="margin-bottom:15px!important;" type="email" id="email" name="email" pattern="[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}" class="txtbox1" placeholder="Enter your Email" required />
<input type="submit" id="signup_commit" value="Sign up" name="commit" style="clear: left; width: 100%; height: 32px; font-size: 13px;" class="btn btn-primary" style="cursor:pointer;">
</div>
</form>
</div-->
<script>
$('#forgot_pwd').on('click',function (){
$('.modal-backdrop').hide();
$('#loginModal').hide();
$('#forgotModal').show();
$('#myModal').hide();
});
$('#loginclick').on('click',function (){
$('.modal-backdrop').hide();
$('#loginModal').show();
$('#forgotModal').hide();
$('#myModal').hide();
});
//$('.frpaswd').click(function (){
//alert('hi');
//location.reload('/welcome');
//});
// new regnow
$('#not_reg').on('click',function (){
$('.modal-backdrop').hide();
//alert('hi');
$('#loginModal').hide();
//location.reload();
$("#name").focus();
$('#forgotModal').hide();
$('#myModal').hide();
});
</script>
<!-- awesome modal finishes here -->
<div class="hide" id="forgotModal" tabindex="-1">
<div id='close' class="frpaswd" data-dismiss="modal" aria-hidden="true" style="position:absolute;background:url(assets/images/cancel.png);width:25px;height:25px;top:-15px;right:-13px;z-index:99991;cursor:pointer;" onclick="location.reload(true);"></div>
<form accept-charset="UTF-8" method="post" action="http://www.medstar.in/welcome/forgotPin" name="fpwd" id="fpwd">
<label style="width:auto;">Enter your Mobile Number</label>
<input type="tel" required="" style="width:244px;" name="mobile_id" placeholder="Enter your Mobile Number" customholder="Enter your Mobile Number" title="Phone Number (Format: 9999999999)" pattern="\d{10}" id="mobile_id" value="" class="customholder">
<input type="submit" value="Recover password" id="rpaswd" name="commit" style="clear: left; width:100%; height: 32px; font-size: 13px;" class="btn btn-primary">
</form>
</div>
<!--
<div id="my_header">
<div id="container">
<span id="logo"></span>
<p>
<span id="text_new">New to medstar?</span>
<span id="text_signup" style="cursor:pointer"><span data-target="#myModal" data-toggle="modal">SIGNUP NOW</span></span>
</p>
<div id="login_container">
<div id="top">
<span id="text">Already a medstar user? Login here</span>
<span id="twitter_logo"></span>
<span id="facebook_logo"></span>
<div style="clear:both;"></div>
</div>
<div id="my_login">
<form method="post" class="loginform">
<label id="mobile_label">Mobile</label>
<input type="text" name="mobile" id="mobile"/>
<label id="pin_label">Pin</label>
<input type="password" name="pin" id="pin"/>
<span id="login"></span>
</form>
</div>
</div>
<span id="forgot_pwd" data-target="#forgotModal" data-toggle="modal">forgot password</span>
</div>
</div> -->
<!-- Main wrapper Section Starts Here -->
<div id="wrapper-h">
<!-- Container Section Starts Here -->
<div class="container-h">
<!-- Header Section Starts Here -->
<div class="header">
<!-- Logo Section Starts Here -->
<div class="logo"><a href="index.html">dialmedicines.com</a></div>
<!-- Logo Section Ends Here -->
<!-- Header Nav Section Starts Here -->
<div class="h-mid">
<ul class="hnav">
<li><a href="faq.html">FAQs</a></li>
<li><a href="medstar/support.html">Contact Us</a></li>
<li><a href="medstar/about.html">About Us</a></li>
</ul>
</div>
<!-- Header Nav Section Ends Here -->
<!-- Header Right Side Section Starts Here -->
<div class="h-rgt">
<!-- Login Section Starts Here -->
<ul class="login">
<li><!-- <span>+91 93927 70407</span>--><span>09555115533</span></li>
</ul>
<!-- Login Section Ends Here -->
</div>
<!-- Header Right Side Section Ends Here -->
</div>
<!-- Header Section Ends Here -->
</div>
<!-- Container Section Ends Here -->
<!-- Main Banner Section Starts Here -->
<div class="mainbanner">
<!-- Container Section Starts Here -->
<div class="container-h">
<div class="bannerlft-img">
</div>
<div class="reg-section">
<div id="signupFailure" style="display:none;">
<span style="font-family: sans-serif;">
<h5>This mobile number is already registered.</h5>
</span>
</div>
<center>
<h1><font color="black"> DIAL or MISS CALL US </font></h1>
<!--ul class="reg">
<li><input type="text" value="My Name" /></li>
<li><input type="text" value="My Mobile Number" /></li>
<li><input type="text" value="My Email Address" /></li>
<li><input type="submit" value="ORDER NOW" /></li>
</ul-->
or leave your details and we will contact you </center>
<form id='Signup' name='Signup' action="mail.php" method="post" accept-charset="UTF-8">
<ul class="reg">
<li><input type="text" placeholder="My Name" pattern="^[^0-9.]([a-z.]||[A-Z]||\s)+$" name="name" id="name" value="" required/></li>
<li> <input type='tel' id="mob" pattern='\d{10}' title='Phone Number (Format: 9999999999)' placeholder="My Mobile Number" name='mob' required/> </li>
<li><input type="email" id="email" name="email" pattern="[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}" class="txtbox1" placeholder="My Email Address" required /> </li>
<li><input type="submit" id="signup_commit" value="Contact Us" name="commit" ></li>
</ul>
</form>
</div>
</div>
<!-- Container Section Ends Here -->
</div>
<!-- Main Banner Section Ends Here -->
<!-- Home Page Body Middle-1 Part Section Starts Here -->
<div class="bdymid1-main">
<!-- Container Section Starts Here -->
<div class="container-h">
<h2 class="reasons"><span>Why Us</span></h2>
<div class="offersteps-sec">
<b class="line"></b>
<div class="offersteps-one">
<span class="offerone">1</span>
<ul class="offerone-list">
<li>We give the best discounts! </li>
<li class="blbtxt">5-50%<span></span><br />Discount<span><sup>*</sup></span></li>
</ul>
</div>
<div class="offersteps-two">
<span class="offertwo">2</span>
<ul class="offerone-list">
<li>We take orders at Door-step </li>
<li class="blbtxt">Deliver medicines at<br />
Door-step!</li>
</ul>
</div>
<div class="offersteps-three">
<span class="offerthree">3</span>
<ul class="offerone-list">
<li> We guarantee</li>
<li class="blbtxt">100% Genuine<br />Medicines</li>
</ul>
</div>
</div>
<h3 class="howitwork">how we work </h3>
<div class="howitwork-sec">
<ul class="howitwork-list">
<li class="regicon"><span class="regicon"></span>Dial Us</li>
<li class="prodetails"><span class="pro-details"></span>Provide details</li>
<li class="ordermedic"><span class="order-medic"></span>Order medicines</li>
</ul>
</div>
</div>
<!-- Container Section Ends Here -->
</div>
<!-- Home Page Body Middle-1 Part Section Ends Here -->
</div>
<!-- Main wrapper Section Ends Here -->
<form name="formLogin" action="http://www.medstar.in/welcome/index">
</form>
</div>
<div class="btm-bar"><div id="bottom_bar">
<div id="empty"></div>
<div id="shipping">
<span id="img"></span>
<span id="text">FREE SHIPPING</span>
</div>
<div id="delivery">
<span id="img"></span>
<span id="text">DELIVERY WITHIN 24 HOURS</span>
</div>
<div id="cash_on_delivery">
<span id="img"></span>
<span id="text">CASH ON DELIVERY</span>
</div>
</div></div>
<div id="footer"><style type="text/css">
#txt2 {
color: #005AAB;
font-family: 'Magra',sans-serif;
font-size: 20px;
font-weight: bold;
}
#breadcrumb{display:none;}
.heading h3{
color: #005AAB;
font-family: 'magra',Sans-serif;
line-height: 1.2em;
margin: 0 0 20px;
}
h2#txt1{
font-family: 'Magra',sans-serif;
font-weight: bold;
text-align: left;
color: #005AAB;
}
.tab-btns a:hover, .tab-btns a.active{
background: url("assets/images/uparrow.png") no-repeat scroll center bottom transparent;
color: #9F080D !important;
font-family: 'Magra';
height: 141px
}
.tab-btns{
border-bottom: 1px solid #CCCCCC;
font: 24px 'asap';
height: 140px;
padding: 20px 0 0 20px;
}
.tab-btns a {
float: left;
font-family: 'Magra';
margin-right: 45px;
text-align: center;
width: 90px;
color: #666666 !important;
cursor: pointer;
}
.ie7 .tab-btns a > img{
display: block;
}
.sub-content {
padding: 20px;
}
.heading11 h5 {
color: #005AAB;
font-family: 'asap';
line-height: 1.2em;
margin: 0 0 20px;
font-size:16px;
}
em {
color: #D0070F;
font-family: Verdana,Geneva,sans-serif;
font-size: 14px;
font-weight: bold;
}
#aboutModal{
width: 55%; background: white; position: fixed;
top: 25%; left: 20%; z-index: 9999;
line-height: 220%;text-align: justify; padding: 30px;color:black;
}
#faqModal{
position:absolute;top:100px;left:10%;width:75%;z-index: 9999;line-height:170%;
text-align: justify; padding: 20px; background: none repeat scroll 0% 0% #fff;
color: black;
}
#contactModal{
background:#fff;color:black;position:fixed;top:50px;left:10%;
width:75%;z-index: 9999;line-height:170%; text-align: justify; padding: 20px;
}
#links a:hover{text-decoration:none;}
</style>
<script type="text/javascript">
</script>
<!-- Footer Top Section Starts Here -->
<div class="f-top">
<!-- Container Section Starts Here -->
<div class="container-h">
<div class="medstarnav">
<h2>dialmedicines</h2>
<ul class="medstarnav-list">
<li><a href="medstar/about.html">About Us</a></li>
<li><a href="faq.html">FAQs</a></li>
<li><a href="medstar/support.html">Contact Us</a></li>
</ul>
</div>
<div class="feature-in">
<h2>Campaign At</h2>
<p class="add-text">
<b>CNBC</b><br />
<b>GTB</b>
</p>
<ul class="featurein-list">
</ul>
</div>
<div class="address"><h4>Address</h4>
<p class="add-text">
59 B,<br />
East Azad Nagar,<br />
Delhi 110051
</p>
</div>
<div class="contactus"><h3>Contact Us</h3>
<ul class="h-contact">
<li><a href="mailto:dial@dialmedicines.com">dial@dialmedicines.com></a></li>
<li class="contact-num">+91 99996 33226</li>
</ul>
</div>
<!-- Container Section Ends Here -->
</div>
</div>
<!-- Footer Top Section Ends Here -->
<!-- Footer Container Starts Here -->
<div class="foot"><div class="container-h">
<p class="copy">© Copyright 2015 Dial Medicines</p>
<p class="facebook">Just Dial and find us at door-step!!</a> <a href="http://www.facebook.com/" target="_blank" class="fb"><img src="assets/images/ui/2015/facebookicon.png"></a></p>
</div></div>
<!-- Footer Container Ends Here -->
<div id="aboutModal" class="hide fade">
<div id='close' data-dismiss="modal" aria-hidden="true" style="position:absolute;background:url(assets/images/close4.gif);width:66px;height:22px;bottom:5px;right:5px;z-index:99991;cursor:pointer;"></div>
</div>
<div id="faqModal" class="hide fade" tabindex="-1">
<div id='close' data-dismiss="modal" aria-hidden="true" style="position:absolute;background:url(assets/images/close4.gif);width:66px;height:22px;bottom:5px;right:5px;z-index:99991;cursor:pointer;"></div>
<style>
#txt3{
text-align:justify!important;
}
</style>
<div id="section" style="padding-top:10px;">
<div id="breadcrumb"><a href="welcome.html">Home</a> > <span class="blue">FAQs</span></div><!-- breadcrumb x -->
<div id="faq">
<h2 id="txt1">Frequently Asked Questions</h2>
<hr style="border:1px solid #333333;"/>
<h3 id="txt2"> What is Dialmedicines.com?</h3>
<p id="txt3"> Dialmedicines.com is a telephone enabled healthcare and pharmacy store based in delhi NCR catering to only chronic patients. It is<em> a startup founded by doctors and MBA professionals </em> and is supported by prominent doctors and businessman delhi and USA.</p>
<h3 id="txt2"> Are the medicines genuine?</h3>
<p id="txt3">We buy from the same pharma companies and stockists that big brand
retailers buy from and the medicines are <em> 100% genuine</em>.</p>
<h3 id="txt2"> Will I be charged any delivery fee?</h3>
<p id="txt3">Our services are <em>free </em> of cost.</p>
<h3 id="txt2"> How long will it take for you to deliver the order?</h3>
<p id="txt3">We typically can deliver the order same day or within <em> 24-48 hours</em>.</p>
<h3 id="txt2"> Do you also supply medicines for acute conditions? (like fever,
headache etc.)?</h3>
<p id="txt3"> If you order these medicines at the time of your monthly order, we can
supply them. But we cannot supply medicines for any urgent need or health
condition.</p>
<h3 id="txt2"> How can i send Prescription?</h3>
<p id="txt3"> 1) Call us and we will pick the prescription at your doorstep. </br> 2) Click a picture of your prescription from your mobile and send it to 91********8</br> 3) Email it to mail@****** </br>4) Use our online order form to upload your prescription.</p>
<h3 id="txt2"> How do I know if a medicine requires prescription? </h3>
<p id="txt3"> Whether a medicine requires prescription or not is specified in the Schedule H or Schedule X list or can be informed by your doctor or a qualified pharmacist We can also let you know once you order if a medicine requires prescription or not. Please call our support number to know this at +91 *********</p>
</br></br>
<p id="foot" style="margin-top:6px;">*For further queries email at <a href="dial@dialmedicines.in"><b>dial@dialmedicines.in</b></a>.</p></br>
</div>
</div><div class="clr"></div>
</div>
<div id="contactModal" class="hide fade" tabindex="-1">
<div id='close' data-dismiss="modal" aria-hidden="true" style="position:absolute;background:url(assets/images/close4.gif);width:66px;height:22px;bottom:5px;right:5px;z-index:99991;cursor:pointer;"></div>
<script type="text/javascript">
$(function(){
$('.tab-btn').on('click',function(){
var name =$(this).attr('name');
$('.tab-btn').removeClass('active');
$(this).addClass('active');
$('.sub-content').hide();
if(name == 'email')
$('div.tab-content div#email').show();
else
$('#'+name).show();
});
});
</script>
<div id="section">
<div id="breadcrumb"><a href="#">DialMedicines</a> > <span class="blue">ContactUs</span></div><!-- breadcrumb x -->
<div id="tabbed-panel">
<div class="tab-content">
<div class="heading"><h3>We are here to support you . Reach us in one of the following ways</h3></div>
<div class="tab-btns">
<!-- <a name="email" class="active tab-btn"><img src="/assets/images/scan.png" alt="Scan"><span>Email</span></a> -->
<a name="email" class="tab-btn"><img src="assets/images/scan.png" alt="Scan"><span>Email</span></a>
<a name="fax" class="tab-btn"><img src="assets/images/fax.png" alt="Fax"><span>Fax</span></a>
<a name="call" class="tab-btn"><img src="assets/images/call.png" alt="Call"><span>Call</span></a>
<a name="visit" class="tab-btn"><img src="assets/images/outlet.png" alt="Outlet"><span>Visit Us</span></a>
<a href="http://urbanwired.com/health/" target="_blank" name="visit" class="nomargin tab-btn"><img src="assets/images/health_03.png" alt="Health Blog"><span>Health Blog</span></a>
<div class="clr"></div>
</div><!-- tab-btns x -->
<div id="email" class="sub-content">
<div class="heading11"><h5>Reach us at dial@dialmedicines.com</h5></div>
</div><!-- sub-content x -->
<div id="fax" style="display:none" class="sub-content">
<div class="heading11"><h5>Please send us a fax of the prescription at XXXXXXXXXXX and we will get back to you within 24 hours.</h5></div>
</div>
<div id="call" style="display:none" class="sub-content">
<div class="heading11"><h5>Please call us at 09999633226</h5></div>
</div>
<div id="visit" style="display:none" class="sub-content">
<div class="heading11"><h5>Visit us in the following address</h5>
<p style="font-size:12px;margin-top:-10px;color:#005AAB;">59 B, East Azad Nagar, Delhi 110051</p>
</div>
</div>
</div><!-- tab-content x -->
</div><!-- tabbed-panel x -->
</div><!-- section x -->
<!--
<div id="aside">
</div>
-->
<div class="clr"></div>
</div> <!-- Google Analytics code starts here -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-38020587-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- Google Analytics code ends here -->
</div>
</div>
</body>
</html>