-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (62 loc) · 2.71 KB
/
Copy pathindex.html
File metadata and controls
75 lines (62 loc) · 2.71 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Form Login and Register</title>
<link rel="stylesheet" href="css/estilos.css">
</head>
<body>
<div class="cod-container">
<div class="form-header">
<img src="img/Logo.png" alt="Logo de CodigoMasters">
<h1>Codigo<span>Masters</span></h1>
</div>
<div class="form-content">
<form action="#" class="cod-form">
<div class="form-title">
<h3>Iniciar Sesión</h3>
</div>
<div class="input-group">
<input type="email" class="form-input" name="form-input" id="correo">
<label class="label" for="correo">Correo</label>
</div>
<div class="input-group">
<input type="password" class="form-input" name="form-input" id="pass">
<label class="label" for="pass">Contraseña</label>
</div>
<div class="input-group">
<input type="submit" class="form-input" value="Iniciar Sesión">
<p>No tienes cuenta? <a href="#" class="alt-form">Ingresa aquí</a></p>
</div>
</form>
</div>
<div class="form-content">
<form action="#" class="cod-form">
<div class="form-title">
<h3>Regístrate Gratis</h3>
</div>
<div class="input-group">
<input type="email" class="form-input" name="form-input" id="reg-correo">
<label class="label" for="reg-correo">Correo</label>
</div>
<div class="input-group">
<input type="password" class="form-input" name="form-input" id="reg-pass">
<label class="label" for="reg-pass">Contraseña</label>
</div>
<div class="input-group">
<input type="password" class="form-input" name="form-input" id="reg-rep-pass">
<label class="label" for="reg-rep-pass">Repetir Contraseña</label>
</div>
<div class="input-group">
<input type="submit" class="form-input" value="Registrate">
<p>Ya tienes cuenta? <a href="#" class="alt-form">Ingresa aquí</a></p>
</div>
</form>
</div>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/form.js"></script>
</body>
</html>