-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistro.html
30 lines (26 loc) · 1.19 KB
/
registro.html
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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="css/registro.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<title>Registro</title>
</head>
<body>
<div class="principal">
<h2>Regístrate</h2>
<form class="formularioRegistro" action="" method="POST">
<input class="inputFormulario" type="text" name="nombres" id="" placeholder="Nombres">
<input class="inputFormulario" type="text" name="apellidos" id="" placeholder="Apellidos">
<input class="inputFormulario" type="text" name="email" id="" placeholder="Email">
<input class="inputFormulario" type="password" name="password" id="" placeholder="Contraseña">
<input class="inputFormulario" type="password" name="confirmar_password" id="" placeholder="Confirmar Contraseña">
<input type="submit" value="Registrarme">
<a href="#">Hola</a>
</form>
</div>
<script src="js/registro.js"></script>
</body>
</html>