-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
35 lines (31 loc) · 1.48 KB
/
index.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
<html>
<head>
<title>Cadastro</title>
<meta charset="utf-8">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link href="css/loja.css" rel="stylesheet" />
</head>
<body><br>
<div class="container">
<div class="principal">
<h1>Formulário de Cadastro</h1><br>
<form action="cadastro-usuario.php">
<div class="col-sm-5">
<input type="text" class="form-control" placeholder="Nome" aria-label="name" name="nome">
</div><br>
<div class="col-sm-5">
<input type="text" class="form-control" placeholder="CPF" aria-label="CPF" name="cpf">
</div><br>
<div class="col-sm-5">
<input type="email" class="form-control" id="inputEmail4" placeholder="Email" name="email">
</div><br>
<div class="col-auto">
<button type="submit" class="btn btn-primary">Enviar</button>
<button type="reset" class="btn btn-primary">Limpar</button>
</div>
</form>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>