-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog-in.html
33 lines (30 loc) · 1.51 KB
/
log-in.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
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<title>Log-in</title>
</head>
<body>
<main class="login">
<article class="login-container">
<img class="login-container_logo" src="./images/logos/logo_yard_sale.svg" alt="logo">
<form action="/" class="login-container_form">
<label for="email" class="login-container_form_label">Email address</label>
<input type="email" id="email" placeholder="[email protected]"
class="login-container_form_inputPass">
<label for="new-password" class="login-container_form_label">Re-enter password</label>
<input type="password" id="new-password" placeholder="*********" class="login-container_form_inputPass">
<button type="submit" class="login-container_form_button">Login </button>
</form>
<a class="login-container-forgotPass" href="#">Forgot my password</a>
<input type="submit" value="Sgin up" class="login_buttonSign">
</article>
</main>
</body>
</html>