forked from VicTips/login-page-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (97 loc) · 3.01 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
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>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/assets/logo-vt.svg" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bootstrap Login Page</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx"
crossorigin="anonymous"
/>
</head>
<body class="bg-info d-flex justify-content-center align-items-center vh-100">
<div
class="bg-white p-5 rounded-5 text-secondary shadow"
style="width: 25rem"
>
<div class="d-flex justify-content-center">
<img
src="/assets/login-icon.svg"
alt="login-icon"
style="height: 7rem"
/>
</div>
<div class="text-center fs-1 fw-bold">Login</div>
<div class="input-group mt-4">
<div class="input-group-text bg-info">
<img
src="/assets/username-icon.svg"
alt="username-icon"
style="height: 1rem"
/>
</div>
<input
class="form-control bg-light"
type="text"
placeholder="Username"
/>
</div>
<div class="input-group mt-1">
<div class="input-group-text bg-info">
<img
src="/assets/password-icon.svg"
alt="password-icon"
style="height: 1rem"
/>
</div>
<input
class="form-control bg-light"
type="password"
placeholder="Password"
/>
</div>
<div class="d-flex justify-content-around mt-1">
<div class="d-flex align-items-center gap-1">
<input class="form-check-input" type="checkbox" />
<div class="pt-1" style="font-size: 0.9rem">Remember me</div>
</div>
<div class="pt-1">
<a
href="#"
class="text-decoration-none text-info fw-semibold fst-italic"
style="font-size: 0.9rem"
>Forgot your password?</a
>
</div>
</div>
<div class="btn btn-info text-white w-100 mt-4 fw-semibold shadow-sm">
Login
</div>
<div class="d-flex gap-1 justify-content-center mt-1">
<div>Don't have an account?</div>
<a href="#" class="text-decoration-none text-info fw-semibold"
>Register</a
>
</div>
<div class="p-3">
<div class="border-bottom text-center" style="height: 0.9rem">
<span class="bg-white px-3">or</span>
</div>
</div>
<div
class="btn d-flex gap-2 justify-content-center border mt-3 shadow-sm"
>
<img
src="/assets/google-icon.svg"
alt="google-icon"
style="height: 1.6rem"
/>
<div class="fw-semibold text-secondary">Continue with Google</div>
</div>
</div>
</body>
</html>