-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
63 lines (55 loc) · 2.62 KB
/
index.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
<!DOCTYPE html>
<html lang "en">
<head>
<title>Login Page Bootstrap4 Website</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet"
href="stylesheet.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://kit.fontawesome.com/bffd979f90.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/FitText.js/1.1/jquery.fittext.min.js"></script>
</head>
<body>
<section class="Form my-4 mx-5">
<div class="container">
<div class="row no-gutters">
<div class="col-lg-5">
<img src="https://www.eternusglobal.com/wp-content/uploads/2019/07/undraw_medicine_b1ol.png" class="img-fluid" alt="">
</div>
<div class="col-lg-7 px-5 pt-5">
<h1 class="font-weight-bold py-3">MyHealthSchemes</h1>
<h1>Sign into your account</h1>
<form>
<div class="form-row">
<div class="col-lg-7">
<input type="email" placeholder="Email-Address" class="form-control my-3 p-4">
</div>
</div>
<div class="form-row">
<div class="col-lg-7">
<input type="password" placeholder="******" class="form-control my-3 p-4">
</div>
</div>
<div class="form-row">
<div class="col-lg-7">
<button type="button" onclick = "window.location.href ='myschemes.html'" class="btn1 mt-3 mb-5">Login</button>
</div>
</div>
<a href="#">Forgot Password?</a>
<p>Don't have an account? <a href="#">Create Account</a></p>
</form>
</div>
</div>
</div>
</section>
</body>
</html>
</body>