-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiag_legal_details.php
58 lines (56 loc) · 1.22 KB
/
diag_legal_details.php
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
<?php
session_start();
include 'pdodb.php';
?>
<div class="diag_form">
<ul>
<h2>Diagonostic center details</h2>
<form action="" method="">
<h3>Technical and Infrastructral details of Diagonostic center</h3>
<li>
Name of diagonostic center<br>
<input type="text" name="diag_name" value="" >
</li>
<li>
Pincode<br>
<input type="text" name="p_add" value="">
</li>
<li>
City/Town<br>
<input type="text" name="c_add" value="">
</li>
<li>
District<br>
<input type="text" name="d_add" value="">
</li>
<li>
Landmark(optional)<br>
<input type="text" name="l_add" value="">
</li>
<li>
Telephone(optional)<br>
<input type="text" name="l_add" value="">
</li>
<li>
Mobile no.<br>
<input type="text" name="m_add" value="">
</li>
<li>
Complete Address<br>
<textarea name="cc_add" rows="4" cols="4">
</textarea>
</li>
<li>
Location of diagonostic center:<br>
<input type="radio" name="yesorno" value="" class="radio">Uraban
<input type="radio" name="yesorno" value="" class="radio">Rural
</li>
<li>
Date of registration:<br>
<input type="date" name="date" value="" style="max-width:25%">
</li>
<li>
<input type="submit" name="submit" value="continue"style="max-width:25%;background-color:#cc324b;color:white;border:0;margin-top:15px;" required>
</li>
</ul>
</div>