forked from Utiwari1999/HACKIIITV19
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doctor.html
61 lines (55 loc) · 1.98 KB
/
doctor.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="doctor.css">
</head>
<body>
<div id="abc">
<nav>
<ul>
<li><a href="1.html">Home</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Join a Community</a>
<div class="dropdown-content">
<a href="cancer.html">Cancer</a>
<a href="diabetes.html">Diabetes</a>
<a href="aids.html">AIDS</a>
</div>
</li>
<li><a href="consult.html">Consult A Doctor</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="signin.html">Sign In</a></li>
<li class="dropdown1">
<a href="javascript:void(0)" class="dropbtn1">Sign Up</a>
<div class="dropdown-content1">
<a href="student.html">Patient</a>
<a href="doctor.html">Doctor</a>
</div>
</li>
</ul>
</nav>
</div>
<br><br>
<center>
<div class="container">
<h1>Register as a Doctor</h1>
<p>Please fill in this form to create an account.</p>
<hr>
<label for="email"><b>Email</b></label>
<input type="text" placeholder="eg: [email protected]" name="email" required>
<label for="email"><b>Mobile No.</b></label>
<input type="text" placeholder="eg: 8989898989" name="email" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<label for="psw-repeat"><b>Confirm Password</b></label>
<input type="password" placeholder="Confirm Password" name="psw-repeat" required>
<hr>
<p>By creating an account you agree to our <a href="#">Terms & Privacy</a>.</p>
<a href="next.html" style="color: white;"><button type="submit" class="registerbtn">Next</button></a>
</div>
<br>
<br>
</center>
</body>
</html>