-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistrar.html
37 lines (32 loc) · 1.33 KB
/
registrar.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>HobbyShare - Registrar</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="pagina-inicial.css">
<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=Comfortaa&display=swap" rel="stylesheet">
</head>
<body>
<header class="cabecalho">
<h1>HobbyShare</h1>
<p>Cadastre-se!</p>
</header>
<main>
<form>
<label for="nome">Nome completo</label>
<input type="text" id="nome" class="input-padrao">
<label for="email">Email</label>
<input type="email" id="email" class="input-padrao" required placeholder="seuemail@dominio.com">
<label for="senha">Senha</label>
<input type="password" id="senha" class="input-padrao">
<input type="submit" value="Registrar" class="registrar">
</form>
</main>
<footer>
<h2>HobbyShare - Grupo: Arthur Gomes, Eduardo Siqueira, Ivan Yared - Todos os direitos reservados</h2>
<footer>
</body>
</html>