-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
37 lines (37 loc) · 1.64 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
<!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>Login</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
</head>
<body>
<div class="container p-3 border border-5 rounded-3" style="width: 35%;">
<h1 class="display-6 text-center p-2 bg-light">User Login</h1>
<form>
<div class="row mb-3 justify-content-md-center">
<label for="inputEmail" class="col-3 col-form-label">Email</label>
<div class="col-lg-auto">
<input type="email" id="inputEmail" class="form-control">
</div>
</div>
<div class="row mb-3 justify-content-md-center">
<label for="inputPassword" class="col-3 col-form-label">Password</label>
<div class="col-lg-auto">
<input type="password" name="" id="inputPassword" class="form-control">
</div>
</div>
<div class="row md-3 justify-content-md-center">
<div class="col-5">
<button class="btn btn-primary">SIgn in</button>
</div>
<div class="col-auto">
<a href="forgot_password.html">Forgot Password?</a>
</div>
</div>
</form>
</div>
</body>
</html>