-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcadastro.html
More file actions
46 lines (43 loc) · 2.65 KB
/
cadastro.html
File metadata and controls
46 lines (43 loc) · 2.65 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TopFusion/Cadastro</title>
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAtFBMVEVHcEwAbXMAao4AhVMCcn4Ac3sAZpcAhlEAdnEBbYIBa4wAZJwAg1gAfmMAfWYAaZEAaJMAhVQAglgAZZoAfUIAhk0AdU4AeFsAbWoAanYAZZvg7eaIt6eKs7c0fJjj7u3////6/f73+/vm7/IAX4cAYaPB19sBYaFTqHVcqIZTlZOkyMJcl6cAYaMAi0QAYnEAWpbV5+egv81NhqcAjEEwhYOyzdIAYaZ2qqcdfXaSvLr///8nph9jAAAAPHRSTlMAEUSHxvyLUv///1U/2//c/6//sa7///////93+/r8Qv/+8/z/4Pv/yvv7+vvP////+/v9zvz7x/r8/8JbV6nkAAABkElEQVR4AW2Tg7bEMBRFM7aNGhnXHf3/f72cYNS3F6q9mkvyQalcqdZq1Xq5RP6jUW02a4xWq9Wudgqfu71+kwstCO32oEy+qPT7EGAIYTiskw9G4zGE13cIwwl5MZ3NF4vFkrFiQIGwfhmbLdC22gudC2t5imH+YklhLSK1C4LjSsHjB5gFfCVQ1GO35xyO+HQ8Ab2thDMhpcvlMmNZzCFYh1XAcDlhGFJaIg18H4/H8whCbaXFHyTsjIoQ+guLCVEQmJ+caJ2k8g8ZXuQBLi8cSq/kIoTFDW+04PYlhNRTgowxyHFJZBJrygR5BI/Rvge4OG2VJo6oSIHHuKzxiysFSmldpXnnMS5FqHrCgdEhJSHw4G5LTTQLmFG4RqFICoHHaB6WiFGRM+GMYYUgY1ziorgxgQ9vyo9gI3Nr3hGjEwt0tBt0IWDkmsuDyYgD0SsxMKDCBD60IsZTS9Wh/jXUEHwIuhImxbHndWxJYVJcnAwx+iu5OMXVkzGu5OoVl3f5gHBQy1ukZGyetv2z/n+GfVcjISHG+wAAAABJRU5ErkJggg==" type="image/x-icon">
<link rel="stylesheet" href="css/form.css">
</head>
<body id="body">
<header id="header-cadastro">
<nav id="nav">
<a class="link" href="index.html"><img src="img/undo-regular-24.png" alt="botao voltar"> </a>
<a class="link l2" href="index.html"><h4>Voltar</h4></a>
</nav>
</header>
<section id="formulario">
<div class="container-cadastro">
<h2 id="title-form">Cadastro</h2>
<form action="">
<div class="input-field">
<input type="text" name="username" id="username" placeholder="Usuário">
<div class="underline"></div>
</div>
<div class="input-field">
<input type="password" name="password" id="password" placeholder="Senha">
<div class="underline"></div>
</div>
<!-- Adicionando campos para o Gmail e Nome -->
<div class="input-field">
<input type="email" name="gmail" id="gmail" placeholder="E-mail">
<div class="underline"></div>
</div>
<div class="input-field">
<input type="text" name="name" id="name" placeholder="Nome">
<div class="underline"></div>
</div>
<input type="submit" value="Continue">
</form>
</div>
</section>
</body>
</html>