-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
49 lines (43 loc) · 1.9 KB
/
signup.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
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/stylesheet.css" >
<meta name="viewport" content="initial-scale=1">
<title>Registro</title>
<script type="text/javascript" src="js/jquery-3.1.0.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript" src="js/conexion.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery-backstretch/2.0.4/jquery.backstretch.min.js"></script>
</head>
<body>
<div class="cont">
<div class="background">
<div class="loginBox">
<div class="box-logo">
<img src="img/LOG-U.gif" alt="">
</div>
<div class="box-title">
<h1>¡Unite a Use The Drive! </h1>
</div>
<div class="box-content">
<p> Por favor completa el formulario. </p>
<form method="post" action="conexion.php">
<input class="input" type="text" name="name" id="name" placeholder="Nombre">
<input class="input" type="text" name="surname" id="surname" placeholder="Apellido">
<input class="input" type="text" name="email" id="email" placeholder="Correo ">
<div class="psw-hide">
<span class="eye"></span><input class="input" type="text" name="password" placeholder="Contraseña">
</div>
<div class="psw-show">
<span id="change" class="eye"></span><input class="input" type="password" name="psw" id="psw" placeholder="Contraseña">
</div>
<input class="input submit" type="button" id="submit" value="Submit">
<span id="result"></span>
</form>
</div>
</div>
</div>
</div>
</body>
</html>