-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadicionar.php
More file actions
41 lines (33 loc) · 1.22 KB
/
Copy pathadicionar.php
File metadata and controls
41 lines (33 loc) · 1.22 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
<?php
// Header
include_once 'includes/header.php';
?>
<div class="row">
<div class="col s12 m6 push-m3">
<h3 class="light"> Novo Cliente </h3>
<form action="php_action/create.php" method="POST">
<div class="input-field col s12">
<input type="text" name="nome" id="nome" required>
<label for="nome">Nome</label>
</div>
<div class="input-field col s12">
<input type="text" name="sobrenome" id="sobrenome" required>
<label for="sobrenome">Sobrenome</label>
</div>
<div class="input-field col s12">
<input type="email" name="email" id="email" required>
<label for="email">Email</label>
</div>
<div class="input-field col s12">
<input type="text" name="idade" id="idade" required>
<label for="idade">Idade</label>
</div>
<button type="submit" name="btn-cadastrar" class="btn"> Cadastrar </button>
<a href="index.php" class="btn green"> Lista de clientes </a>
</form>
</div>
</div>
<?php
// Footer
include_once 'includes/footer.php';
?>