-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform_cadastro_cliente.php
73 lines (66 loc) · 3.44 KB
/
form_cadastro_cliente.php
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
// print_r($email);
include './conexao.php';
include './cabecalho.php';
?>
<!DOCTYPE html>
<html lang="PT-br">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/form.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>Meus Dados</title>
</head>
<body class="corpo">
<form class="formulario" action="grava_form_cadastro_cliente.php" method="post" style="margin-bottom: 5%;">
<h1 class="mb-3">Criando minha conta</h1>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Nome Completo:</label>
<input type="text" class="form-control" required id="exampleInputEmail1" aria-describedby="emailHelp" name="nm_cliente">
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">CPF:</label>
<input type="text" class="form-control" required id="exampleInputEmail1" aria-describedby="emailHelp" name="cpf">
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email:</label>
<input type="email" class="form-control" required id="exampleInputEmail1" aria-describedby="emailHelp" name="email_cliente">
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Senha:</label>
<input type="text" class="form-control" required id="exampleInputEmail1" aria-describedby="emailHelp" name="senha_cliente">
</div>
<h1 class="mb-3">Endereço</h1>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Rua:</label>
<input type="text" class="form-control" required id="exampleInputEmail1" aria-describedby="emailHelp" name="rua">
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Bairro:</label>
<input type="text" class="form-control" required id="exampleInputEmail1" aria-describedby="emailHelp" name="bairro">
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Cidade:</label>
<input type="text" class="form-control" required id="exampleInputEmail1" aria-describedby="emailHelp" name="cidade">
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Número da residência:</label>
<input type="text" class="form-control" required id="exampleInputEmail1" aria-describedby="emailHelp" name="numero_casa">
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">UF:</label>
<input type="text" class="form-control" required id="exampleInputEmail1" aria-describedby="emailHelp" name="uf">
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">CEP:</label>
<input type="text" class="form-control" required id="exampleInputEmail1" aria-describedby="emailHelp" name="cep">
</div>
<div>
<button type="submit" class="btn botao-form">Salvar</button>
<a style="text-decoration:none;" class="btn btn-primary" href="homeCliente.php">Voltar</a>
</div>
</form>
</body>
<?php include 'rodape.php'; ?>
</html>