forked from Abhinav-21/Healthcare-Record-Management
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
78 lines (66 loc) · 3.09 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Login/SignUp</title>
<link rel="icon" type="image/x-icon" href="/images/icon.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-aFq/bzH65dt+w6FI2ooMVUpc+21e0SRygnTpmBvdBgSdnuTN7QbdgL+OapgHtvPp" crossorigin="anonymous" />
<link rel="stylesheet" href="/css/style.css">
</head>
<body id="signup-body">
<button class="hidden" id="actsgnModal" data-bs-toggle="modal" data-bs-target="#signupModal">.</button>
<div class="container">
<div class="card sign lscard">
<img class=icon src="/images/icon.png" alt="404">
<h3 class="title"><b>HEALTHCARE RECORD</b></h3>
<h4 class="login">Signup</h4>
<form action="/signup" method="post">
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label" id="email-input">Email address</label>
<input type="email" class="form-control" name="email" id="email" value="" required>
<div class="mb-3">
<label for="exampleInputPassword1" id="pswd" class="form-label">Password</label>
<input type="password" name="password" class="form-control" id="password" value="" required>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Confirm Password</label>
<input type="password" name="cnfpassword" class="form-control" id="cnfpassword" value="" required>
</div>
<div class="login"><button type="button" class="btn btn-primary" id="sgn-btn">Sign-up</button></div>
</form>
<small class="mx-4 my-2">
<b>Already have an account?</b>
<a href="#" id="login-btn"><b> login</b></a>
</small>
</div>
</div>
<div class="modal fade" id="signupModal" >
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header center">
<h1 class="modal-title fs-5 " id="modal-content">Enter the security token sent to your mail.</h1>
</div>
<div class="modal-body">
<div class="mb-3 row">
<label class="col-sm-1 col-form-label"><b>Token</b></label>
<div class="col-sm-9">
<input type="text" class="form-control" id="token">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal" id="close">Close</button>
<button type="button" class="modal-btn btn" id="VerifySgnToken">Verify</button>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-qKXV1j0HvMUeCBQ+QVp7JcfGl760yU08IQ+GpUo5hlbpg51QRiuqHAJz8+BrxE/N"
crossorigin="anonymous"></script>
<script src="/js/login.js"></script>
</body>
</html>