forked from tec-webII-2n11/natalia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcadastro2.php
More file actions
22 lines (21 loc) · 930 Bytes
/
Copy pathcadastro2.php
File metadata and controls
22 lines (21 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php include 'layouts/header.php'; ?>
<?php include 'layouts/menu.php'; ?>
<div class="container cadastro col-xs-3">
<h1>Cadastro - Etapa 2</h1>
<form class="form-group" method="POST" action="val-etapa2.php">
<input type="hidden" name="nome" value="<?php echo $nome; ?>">
<input type="hidden" name="email" value="<?php echo $email; ?>">
<input type="hidden" name="user" value="<?php echo $user; ?>">
<input type="hidden" name="pass" value="<?php echo $pass; ?>">
<div class="form-group">
<label for="tel">Telefone</label>
<input type="text" class="form-control" name="tel" placeholder="(11) 99999-9999">
</div>
<div class="form-group">
<label for="end">Endereço</label>
<input type="text" class="form-control" name="end" placeholder="Endereço">
</div>
<button type="submit" class="btn btn-default">Ok</button>
</form>
</div>
<?php include 'layouts/footer.php'; ?>