-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcadastro.html
More file actions
53 lines (52 loc) · 1.43 KB
/
Copy pathcadastro.html
File metadata and controls
53 lines (52 loc) · 1.43 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
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cadastro</title>
<link rel="stylesheet" href="./css/cadastro_login.css" />
</head>
<body>
<div class="container">
<h1>Cadastro</h1>
<form id="cadastroForm">
<span id="cadastroFeedback" class="error"></span>
<input
type="text"
id="user_gh"
name="user_gh"
placeholder="Usuário do GitHub"
required
/>
<span id="imgGithub" class="img-github"></span>
<span id="usernameFeedback" class="error"></span>
<input
type="email"
id="email"
name="email"
placeholder="Email"
required
/>
<input
type="password"
id="password"
name="password"
placeholder="Senha"
required
/>
<button type="submit" class="button">Cadastrar</button>
</form>
<div class="info">
<p>
<strong>Nota:</strong> O nome de usuário é único e será usado na URL
para acessar os diretórios do GitHub.
</p>
<p>
Se já é cadastrado e quer voltar, click <a href="index.html">aqui</a>
</p>
</div>
</div>
<script src="./js/AjaxRequest.js"></script>
<script src="./js/cadastro.js"></script>
</body>
</html>