-
Notifications
You must be signed in to change notification settings - Fork 1
/
form.html
50 lines (36 loc) · 1.23 KB
/
form.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
50
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Formulario</title>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="css/estilos_form.css">
</head>
<body>
<div class="registerBox">
<h1>Please register to play</h1>
<label>Name</label>
<input type="text" placeholder="Nombre">
<label>Surname</label >
<input type="text" placeholder="Apellido" value="">
<label>E-mail</label>
<input type="text" placeholder="e-mail" value="">
<label>Password</label>
<input type="password" placeholder="Password" value="">
<label>Confirm password </label>
<input class="last_input"type="password" placeholder="Password" value="">
<button type="reset">Reset</button>
</div>
<div class="loginBox">
<h1> Already registered?</h1>
<h2>Log in!!</h2>
<label>E-mail</label>
<input class="input" type="email" placeholder="Email">
<label>Password</label>
<input class="last_input" type="password" placeholder="Password">
<button>Login</button>
<img src="img/fire_bird.gif" alt="phoenix gif">
</div>
</body>
</html>