-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (49 loc) · 1.48 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
<!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</title>
<link
href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body class="dark">
<button class="theme-switcher">
<span class="dark">☀️</span><span class="light">🌙</span>
</button>
<main class="login-page">
<section class="login">
<div class="login-image">
<img src="./assets/img/login-illustration.svg" />
</div>
<div class="login-body">
<h2>Login</h2>
<form>
<div class="input-field">
<label for="email">Email</label>
<input type="email" name="email" id="email" />
</div>
<div class="input-field">
<label for="password">Password</label>
<input type="password" name="password" id="password" />
</div>
<div class="input-field">
<input
class="btn"
type="submit"
value="Login"
name="login"
id="login"
/>
</div>
</form>
</div>
</section>
</main>
<script src="./js/theme.js"></script>
</body>
</html>