-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
47 lines (45 loc) · 1.67 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
<!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">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="login.css">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="manifest" href="images/site.webmanifest">
<link rel="mask-icon" href="images/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#00aba9">
<meta name="theme-color" content="#ffffff">
<title>Login</title>
</head>
<body>
<header>
<div class="logoWrapper">
<img src="images/android-chrome-192x192.png" class="headerIcon">
<h1>Pomodoro</h1>
</div>
<a href="index.html" class="menuButtons">Log out</a>
</header>
<section class="loginSection">
<div class="loginDiv">
<h2>Login</h2>
<form>
<p>Enter email</p>
<input type="email" name="email" class="inputLogin">
<p>Password</p>
<input type="password" name="password" class="inputLogin">
<input type="submit" value="Submit" class="primary-button buttons">
</form>
</div>
<img src="images/worktime.png" id="imgLogin">
</section>
<a href="index.html" class="primary-button buttons">Back</a>
</body>
<footer>
<p>Created by Dayana Mariano © 2022</p>
</footer>
</body>
</html>