-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (31 loc) · 1.11 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
<!DOCTYPE html>
<html lang="pt">
<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="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@300&display=swap" rel="stylesheet">
<title>Cadastro</title>
</head>
<body>
<section class="form-section">
<h1>Cadastro</h1>
<div class="form-wrapper">
<form action="">
<div class="input-block">
<label for="login-email">E-mail</label>
<input type="email" id="login-email">
</div>
<div class="input-block">
<label for="login-password">Senha</label>
<input type="password" id="login-password">
</div>
<button type="submit" class="btn-login">Entrar</button>
</form>
</div>
</section>
<script src="js/script.js"></script>
</body>
</html>