-
Notifications
You must be signed in to change notification settings - Fork 22
/
login.html
91 lines (64 loc) · 2.6 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
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
<!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 Form</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.2.0/css/font-awesome-ie7.css">
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/bootstrap/css/login.css">
</head>
<body>
<section class="section-book">
<div class="row">
<div class="book">
<div class="book-form">
<form action="#" class="form">
<div class="margin-8">
<h2 class="heading-secondary">
Welcome
</h2>
<div class="form-group">
<input type="email" class="form-input" placeholder="Email Address" id="email" required>
<label for="name" class="form-label">Email Address</label>
</div>
<div class="form-group">
<input type="password" placeholder="Password" name="password" class="form-input" />
<label for="name" class="form-label">Password</label>
</div>
<div class="form-group">
<div ><button class="btn" type="submit" value="Login">Login</button> </div>
</div>
</form>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-logo-box" >
Copyright © BlackTimber Labs 2021
</div>
<div class="row">
<div class="col-1-of-2">
<div class="footer-navigation">
<ul class="footer-list">
<li class="footer-items"><a href="" class="footer-link">Company</a></li>
<li class="footer-items"><a href="" class="footer-link">Contact us</a></li>
<li class="footer-items"><a href="" class="footer-link">Privacy policy</a></li>
<li class="footer-items"><a href="" class="footer-link">Terms</a></li>
</ul>
</div>
</div>
<div class="col-1-of-2">
<p class="footer-copyright">
Made with ❤️ by <a href="#" class="footer-link">Team BlackTimber Labs</a> .
</p>
</div>
</div>
</footer>
</body>
</html>