forked from KiranAminPanjwani/MedStats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign up.html
91 lines (75 loc) · 3.1 KB
/
sign up.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="Shortcut Icon" type="image/ico" href="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MedStats</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="./css/sign up.css"> <!-- Your custom CSS file -->
</head>
<body>
<!-- NavBar -->
<!-- <nav id="navbar" class="navbar navbar-expand-lg navbar-dark fixed-top"> -->
<nav id="navbar">
<a class="navbar-brand mb-1 nav-heading" href="/index.html" style="font-size: 28px;">
<!-- <img src="./medicalLogo.png" /> -->
<i class="fa fa-stethoscope" style="font-size:30px;color:white"></i>
<img src="./images/logo-color.jpeg" alt="" width="130px">
</a>
</nav>
<br>
<section id="sign">
<div class="container">
<p style="font-size:30px;" class="text-center" id="subHead1"><b>Sign up</b></p>
<hr>
<div class="form-container">
<form id="MedicalForm">
<div class="form-group row">
<label for="email" class="col-sm-2 col-form-label">Email Id</label>
<div class="col-sm-10 position-relative">
<input type="email" class="form-control" id="email" placeholder="Email">
</div>
</div>
<div class="form-group row">
<label for="username" class="col-sm-2 col-form-label">Username</label>
<div class="col-sm-10 position-relative">
<input type="text" class="form-control" id="username" placeholder="Username">
</div>
</div>
<div class="form-group row">
<label for="Password" class="col-sm-2 col-form-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="password" placeholder="Password">
</div>
</div>
<a href="index.html">
<button type="button" class="btn text-light btn-large btn-block" style="background-color: #b40c57;"
id="add-record-btn">Done</button>
</a>
<p>Have an existing account? <a href="login.html">login</a> here</p>
</form>
</div>
</div>
</div>
</section>
<section>
<footer>
<p class="text-center">
Made by Kiran Amin Panjwani <br>
This Project is participating in Hacktoberfest. Copyright © 2023.</br></br>
</p>
</footer>
</section>
<script>
// const addRecordBtn = document.getElementById("add-record-btn");
// addRecordBtn.addEventListener("click", function () {
// alert("Please login inorder to save add your records to your personal journal");
// });
</script>
</body>
</html>