-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (58 loc) · 2.97 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Login</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<script src="scripts/main.js"></script>
</head>
<body>
<section class="hero has-background-white-ter is-fullheight">
<div class="hero-body">
<div class="container">
<div class="columns is-centered">
<div column is-5-tablet is-4-desktop is-3-widescreen>
<form action="POST" class="box">
<h3 class="title is-3">Login</h3>
<div class="field">
<label for="" class="label">Email</label>
<div class="control has-icons-left">
<input type="email" placeholder="e.g. [email protected]" class="input" required>
<span class="icon is-small is-left">
<i class="fa fa-envelope"></i>
</span>
</div>
</div>
<div class="field">
<label for="" class="label">Password</label>
<div class="control has-icons-left">
<input type="password" placeholder="******" class="input" required>
<span class="icon is-small is-left">
<i class="fa fa-lock"></i>
</span>
</div>
</div>
<div class="field">
<label for="" class="checkbox" id="label-remember-me" onclick="setCheckedState()">
<input type="checkbox" id="checkbox-remember-me">
Remember me
</label>
</div>
<div class="field">
<a href="#">Forgot Password</a>
</div>
<div class="field">
<button class="button is-success">
Login
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
</body>
</html>