-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformulario.html
More file actions
28 lines (27 loc) · 1.31 KB
/
formulario.html
File metadata and controls
28 lines (27 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<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/funcoes.css" />
<title>JavaScript</title>
</head>
<body>
<img src="../images/dark.webp" alt="ThemeChange" onclick="ThemeChange()" id="dark" />
<div class="container">
<form id="form0">
<h5>Faça seu cadastro</h5>
<input type="text" placeholder="Nome" name="nome" class="verifyLetters" />
<input type="email" placeholder="Email" name="email" class="verifyEmail" />
<input type="tel" placeholder="Telefone" name="telefone" />
<input type="text" placeholder="Cidade" name="cidade" class="verifyCity" />
<input type="text" placeholder="CEP" name="cep" class="verifyCep" />
<input type="text" placeholder="UF" name="uf" class="verifyDigits" maxlength="2" onkeydown="LimitCharacters(this)" onkeyup="LimitCharacters(this)" /><br />
<button type="submit">Enviar</button>
</form>
</div>
<div class="container-message"><div class="message"></div></div>
<script type="text/javascript" src="../js/formulario.js"></script>
</body>
</html>