-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (56 loc) · 1.67 KB
/
index.html
File metadata and controls
60 lines (56 loc) · 1.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login</title>
<link
href="https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/all.min.css" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/media.css" />
</head>
<body>
<div class="container my-5 w-75 text-center">
<div id="h1-form" class="w-100 m-auto p-5 bg-form">
<h1>Smart Login System</h1>
<div class="my-3">
<input
type="email"
class="form-control text-light"
id="user-email-login"
placeholder="Enter your email"
/>
</div>
<div class="my-3">
<input
type="password"
class="form-control"
id="user-password-login"
placeholder="Enter your password"
/>
</div>
<a href="">
<button
id="btnLogin"
type="submit"
class="btn btn-outline-info my-3 w-100"
>
Login
</button>
</a>
<p class="text-light">
Don’t have an account?
<a href="sign.up.html" class="text-light text-decoration-none"
>Sign Up</a
>
</p>
</div>
</div>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>