-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistro.php
More file actions
25 lines (25 loc) · 1.04 KB
/
registro.php
File metadata and controls
25 lines (25 loc) · 1.04 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>registro</title>
<!--vinculación hoja de estilos -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Formulario de Registro-->
<section class="formulario">
<h1>Usuario nuevo</h1>
<form method=post action=nuevo_usuario.php>
<p>Nombre <input class="textos" type="text" placeholder="ingrese su nombre" name="nombre"></p>
<p>Usuario <input class="textos" type="text" placeholder="ingrese su usuario" name="usuario"></p>
<p>Contraseña <input class="textos" type="text" placeholder="ingrese su clave" name="clave"></p>
<input class="boton" type="submit" value ="registrarse">
<!-- botón de regreso -->
<button class="boton" type="button" onclick="location.href='index.php'">volver a iniciar sesión</button>
</form>
</section>
</body>
</html>