-
Notifications
You must be signed in to change notification settings - Fork 0
/
cadastrarusuario.php
35 lines (29 loc) · 996 Bytes
/
cadastrarusuario.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cadastrar Usuário</title>
<meta charset="utf-8" />
</head>
<body>
<div class="container" >
<a class="links" id="paracadastro"></a>
<div id="cadastro">
<form action="cadastrar_usuario.php" method="post">
<h1>Cadastro de novo usuário</h1>
<input type="hidden" name="id" />
Nome <input type="text" name="nome_usuario"/><br><br>
Email <input type="text" name="email_usuario"/><br><br>
Senha <input type="text" name="senha_usuario"/><br><br>
<p>
<input type="submit" value="Cadastrar"/>
</p>
<p class="link">
Já tem conta?
<a href="index.php"> Ir para Login </a>
</p>
</form>
</div>
</div>
</div>
</body>
</html>