-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
97 lines (92 loc) · 5.27 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="icon" href="./assets/image/favicon-32x32.png" type="image/gif" sizes="32x32">
<link rel="shortcut icon" href="./assets/image/favicon-32x32.png" type="image/gif" sizes="32x32">
<link rel="apple-touch-icon" href="./assets/image/apple-touch-icon.png" type="image/gif">
<!-- Google Font CDN -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<!-- Main CSS -->
<link rel="stylesheet" href="./assets/css/signup-login.css">
<title>Signup | E-Health Care</title>
</head>
<body>
<section>
<div class="container">
<div class="row custom-shadow">
<div
class="col-12 col-sm-12 col-md-12 col-lg-5 login-first-parent text-light d-flex align-items-center">
<div>
<a href="index.html">
<img src="./assets/images/logo.svg" width="65%" class="img-fluid mb-5 mx-auto d-block"
alt="" srcset="">
</a>
<h3 class="custom-red mt-5">Sign-up</h3>
<h4>Welcome to E-Health Care !</h4>
<p>Sign up and help us to provide you our best services</p>
<p class="mt-custom text-center">Already have an account?<a href="login.html"
class="text-decoration-none text-info"> Login</a> Now!</p>
</div>
</div>
<div class="col-12 col-sm-12 col-md-12 col-lg-7 d-flex align-items-center">
<form action="" class="w-100 mx-4">
<div class="row ">
<div class="col-12 col-md-6 col-lg-6 mt-3">
<label class="form-label">First Name</label>
<input type="text" class="form-control" placeholder="Username" aria-label="Username">
</div>
<div class="col-12 col-md-6 col-lg-6 mt-3">
<label class="form-label">Last Name</label>
<input type="text" class="form-control" placeholder="Last Name" aria-label="Last Name">
</div>
</div>
<div class="my-3">
<label class="form-label">Email address</label>
<input type="email" class="form-control" placeholder="yourmail@gmail.com"
aria-describedby="emailHelp">
<!-- <div class="form-text text-danger">We'll never share your email with anyone else.
</div> -->
</div>
<div class="mb-3">
<label class="form-label">Password</label>
<input type="password" placeholder="********" class="form-control">
<!-- <div class="form-text text-danger">We'll never share your email with anyone else.
</div> -->
</div>
<div class="mb-3">
<label class="form-label">Confirm Password</label>
<input type="password" placeholder="********" class="form-control">
<!-- <div class="form-text text-danger">We'll never share your email with anyone else.
</div> -->
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">I read and agree to all the <a
class="text-decoration-none" href="">Terms</a>
and <a class="text-decoration-none" href="">Privacy Policy</a>
</label>
</div>
<div class="d-flex justify-content-center mb-2">
<button type="submit" class="btn btn-custom-red w-50 ">Sign-up</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous">
</script>
</body>
</html>