-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.html
55 lines (51 loc) · 2.11 KB
/
cadastro.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
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Inika:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Asap:wght@400;700&display=swap" rel="stylesheet">
<title>Hero's Grimory</title>
<link rel="stylesheet" href="style-cadastro.css">
</head>
<body>
<figure>
<figcaption>
<div class="image">
<img src="images/_1.png" alt="Imagem de exemplo">
</div>
</figcaption>
</figure>
<p id="text1">Cadastre-se</p>
<h1>RETORNAR</h1>
<a href="index.html">
<button class="Return">
<img src="images/return-icon.png" class="btn-return" alt="Return Icon">
</button>
</a>
<form action="/submit" method="post" class="formulario">
<div class="inputBox">
<label for="nome" class="labelInput">NICKNAME</label>
<input type="text" name="nome" id="nome" class="inputUser" required>
</div>
<div class="inputBox">
<label for="email" class="labelInput">EMAIL</label>
<input type="email" name="email" id="email" class="inputUser" required>
</div>
<!-- Novo contêiner flex para SENHA e CONFIRMAR SENHA -->
<div class="password-container">
<div class="inputBoxS">
<label for="senha" class="labelInputS">SENHA</label>
<input type="password" name="senha" id="senha" class="inputUserS" required>
</div>
<div class="inputBoxS">
<label for="confirmar_senha" class="labelInputS">CONFIRMAR SENHA</label>
<input type="password" name="confirmar_senha" id="confirmar_senha" class="inputUserS" required>
</div>
</div>
<input type="submit" name="submit" id="submit" value="Criar Conta">
</form>
<div class="yellow-rect"></div>]
<script src="cadastro.js"></script>
</body>
</html>