-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCadastro Cliente.html
57 lines (57 loc) · 2.39 KB
/
Cadastro Cliente.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
56
57
<!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="icon" type="image/ico" href="IMAGENS/ICON003.ico">
<link rel="stylesheet" href="style.css">
<script src="JS/Index.js" type="text/javascript"></script>
<style>
input, select {
width: 60%;
padding: 8px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;}
</style>
</head>
<body>
<div class="site-header">
<img src="IMAGENS/logo001.png" width=320px>
<button class="menu-button" onclick="toggleMenu()">Menu</button>
<div class="menu" id="menu">
<a href="index.html" class="button">Inicio</a>
<a href="Login Cliente.html" class="button">Sou Cliente</a>
<a href="Login Colaborador.html" class="button">Sou Colaborador</a>
</div>
</div>
<div class="container">
<center>
<H2>Bem-Vindo Cliente!</H2>
<h3>Cadastre-se abaixo.</h3>
</center>
<form class="form1" action="Confirmação de Cadastro.html">
<label for="nome">Nome Completo:</label>
<input type="text" id="nome" name="nome" placeholder="Digite seu nome" required oninput="nameValidate()">
<label for="nome">CPF:</label>
<input type="text" id="CPF" name="CPF" placeholder="Digite seu CPF" maxlength="11" required>
<label for="data">Data de Nascimento:</label>
<input type="date" id="data" name="data" required>
<label for="email">E-mail:</label>
<input type="email" id="email" name="email" placeholder="[email protected]" required>
<label for="nome">Senha:</label>
<input type="password" id="Senha" name="nome" placeholder="Digite uma Senha" required>
<label for="nome">Confirmação de Senha:</label>
<input type="password" id="SenhaC" name="nome" placeholder="Repita a Senha" required>
<button class="btn" type="submit" onclick="return validarSenha()">Cadastra-se</button>
</form><br><br>
</div>
<br><br>
<br><br>
<div class="site-footer">
Copyright © 2024.
</div>
</body>
</html>