-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (59 loc) · 2.99 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<!-- Sobre la pagina... -->
<meta name="author" content="Sebastián Mantilla"/>
<meta name="description" content="Página web de Yu-Gi-Oh! juego de cartas coleccionables."/>
<meta name="keywords" content="Yu-Gi-Oh, cards, games, juego de cartas"/>
<title>Yu-Gi-Oh! login</title>
<!-- Herramientas adicionales necesarias para el documento -->
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Estilos que usa el documento -->
<link rel="icon" type="images/x-icon" href="./images/icon_icon.png"/>
<link rel="stylesheet" type="text/css" href="./CSS/index.css"/>
<style>
@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap');
</style>
<body>
<div id="content">
<div id="forms_content">
<section id="form_left">
<div class="tab">
<div class="tab_inner">
<button class="tab_buttons" id="index1">Iniciar sesión</button>
</div>
<div class="tab_inner">
<a href="./HTML/register.html">
<button class="tab_buttons">Registrar</button>
</a>
</div>
</div>
<form action="./HTML/home_page.html" method="post" class="form_detail" enctype="multipart/form-data">
<div class="form_row">
<label class="form_row_inner">
<input type="email" name="user" inputmode="email" autocomplete="on" required class="input_text" id="email"/>
<span class="label">Email</span>
<span class="border"></span>
</label>
</div>
<div class="form_row">
<label class="form_row_inner">
<input type="password" name="password" inputmode="verbatim" autocomplete="on" required minlength="6" class="input_text" id="password"/>
<span class="label">Contraseña</span>
<span class="border"></span>
</label>
</div>
<div class="form_row_last">
<input type="submit" name="login" value="DUEL!" class="login"/>
</div>
</form>
</section>
<section id="form_right">
<img src="./images/logo.svg" alt="Logo" height="100%"/>
</section>
</div>
</div>
</body>
</html>