-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
40 lines (39 loc) · 1.93 KB
/
login.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Login</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
</head>
<body>
<div class="vh-100 d-flex justify-content-center align-items-center">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="col-12 col-md-8 col-lg-6">
<div class="card bg-white">
<div class="card-body p-5">
<form class="mb-3 mt-md-4">
<h2 class="fw-bold mb-2 text-uppercase ">University Of Rajshahi</h2>
<div class="mb-3">
<label for="email" class="form-label ">Email address</label>
<input type="email" class="form-control" id="email" placeholder="Email">
</div>
<div class="mb-3">
<label for="password" class="form-label ">Password</label>
<input type="password" class="form-control" id="password" placeholder="Password">
</div>
<p class="small"><a class="text-primary" href="forget-password.html">Forgot password?</a></p>
<div class="d-grid">
<button class="btn btn-outline-dark" type="submit">Login</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</body>
</html>