forked from AyeshaNagdawala/HealthBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
103 lines (95 loc) · 3.7 KB
/
register.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>signup</title>
<link rel="stylesheet" href="static/signup.css" />
</head>
<!--<m>
<div class="class flex" style="flex-direction: row
;">
<img src="image1.png" alt="">-->
<body>
<div class="main">
<input type="checkbox" id="chk" aria-hidden="true" />
<div class="signup">
<form action="/register" method="post">
<label for="chk" id="reg" name="reg" aria-hidden="true"
>Sign up</label>
<input type="text" name="username" placeholder="Username" required="">
<input
type="password"
id="password"
name="password"
placeholder="Password"
required=""
/>
<input
type="password"
id="confirmation"
name="confirmation"
placeholder="Confirmation"
required=""
/>
<div class="mb-3">
<!-- <label for="acc_type">Select your Account Type :</label> -->
<select name="acc_type" id="acc_type">
<option disable selected> Select Account Type</option>
<option value="patient">Patient</option>
<option value="doctor">Doctor</option>
</select>
</div>
<button>Sign up</button>
<a class="secondary flex"
>Already have account? <i class="fa-solid fa-arrow-down"></i
></a>
</form>
</div>
<div class="signin">
<form action="/login" method="post">
<label for="chk" aria-hidden="true">Sign In</label>
<!-- <input type="email" name="email" placeholder="Email" required=""> -->
<input
id="username"
type="text"
name="username"
placeholder="Username"
required=""
/>
<input
type="password"
id="password"
name="password"
placeholder="Password"
required=""
/>
<div class="mb-3">
<!-- <label for="acc_type">Select your Account Type :</label> -->
<select name="acc_type" id="acc_type">
<option disable selected> Select Account Type</option>
<option value="patient">Patient</option>
<option value="doctor">Doctor</option>
<option value="admin">Admin</option>
</select>
</div>
<button>Sign In</button>
<a href="">Forget password?</a>
</form>
</div>
</div>
<script
src="https://kit.fontawesome.com/8263f3c691.js"
crossorigin="anonymous"
></script>
<!--<script>
let signupBtn=document.getElementById("signinBtn");
signupBtn.onclick=function(){
signinBtn.style.maxHeight="0";
}
</script> -->
</body>
</div>
</m>
</html>