-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalta_usuario.php
36 lines (33 loc) · 932 Bytes
/
alta_usuario.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
<!DOCTYPE html>
<?php
$_SESSION['altas']=1;
include "sesion.php";
?>
<html>
<head>
<title>Alta de usuarios</title>
<meta charset="UTF-8">
<link href="css/alta_usuario.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>Registrar a un usuario en la BD</h1>
<form action="registro.php" method="post">
id usuario: <input type="number" name="id_ususario" autocomplete="off"/>
<br>
Nombre: <input type="text" name="nombre" autocomplete="off"/>
<br>
Apellido paterno: <input type="text" name="apaterno" autocomplete="off"/>
<br>
Apellido materno: <input type="text" name="amaterno" autocomplete="off"/>
<br>
Usuario: <input type="text" name="ususario" autocomplete="off"/>
<br>
Contraseña: <input type="password" name="contraseña" autocomplete="off"/>
<br>
<input type="submit" value="Ingresar">
</form>
</body>
<footer>
<a href="creditos.php">Creditos</a>
</footer>
</html>