-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
38 lines (37 loc) · 1.55 KB
/
register.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
31
32
33
34
35
36
37
38
<!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">
<title>Red Social - Registro</title>
<link rel="stylesheet" href="estilos/register_estilos.css">
</head>
<body>
<div class="contenedor">
<h1 class="title">Red <span>Social</span></h1>
<div class="form_contenedor">
<h2>Registrate...</h2>
<h4>Llene los siguientes campos
para acceder a la app.
</h4>
<form action="servidor/register.php" method="post" class="form">
<input type="text"placeholder="Nombre de Usuario" name="username">
<input type="password" placeholder="Contraseña">
<input type="password" placeholder="Confirme Contraseña" name="pass">
<input type="text" placeholder=" Nombre" name="nombre">
<input type="text" placeholder="Apellido" name="apellido">
<select name="genero">
<option value="">Genero</option>
<option value="m">Hombre</option>
<option value="f">Mujer</option>
</select>
<input type="email" name="email" placeholder="Correo electronico">
<input type="date" name="fecha_nacimiento">
<button type="submit">Registrarse</button>
</form>
<button><a href="index.html">Regresar</a></button>
</div>
</div>
</body>
</html>