-
Notifications
You must be signed in to change notification settings - Fork 0
/
registro.html
44 lines (42 loc) · 2.07 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!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">
<title>PromoDurango</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="registro.css">
</head>
<body>
<a href="index.php"> <h1 class="title">PromoDurango</h1></a>
<div class="login-form">
<form action="" method="post">
<div class="avatar">
<img src="Imagenes/marca/isotipo-blanco.png" alt="icono">
</div>
<h2 class="text-center">Registro</h2>
<div class="form-group">
<input type="text" class="form-control" name="uid" placeholder="Nombre de usuario" required="required">
</div>
<div class="form-group">
<input type="email" class="form-control" name="mail" placeholder="Correo electronico" required="required">
</div>
<div class="form-group">
<input type="password" class="form-control" name="pwd" placeholder="Contraseña" required="required">
</div>
<div class="form-group">
<input type="password" class="form-control" name="pwd-repeat" placeholder="Repetir contraseña" required="required">
</div>
<div class="form-group">
<button name="signup-submit" type="submit" class="btn btn-primary btn-lg btn-block">Crear Cuenta</>
</div>
</form>
<p class="text-center small">¿Ya eres usuario? <a href="login.html">Inicia sesión</a></p>
</div>
</body>
</html>