-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (98 loc) · 3.82 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Memorama</title>
<link rel="stylesheet" href="./assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="./assets/css/styles.css" />
</head>
<body class="bg-dark">
<!-- As a heading -->
<nav class="navbar navbar-dark bg-primary mb-5">
<span class="navbar-brand mb-0 h1">Memoria</span>
</nav>
<main class="container main shadow p-3 mb-5 rounded">
<h4>Hola, Bienvenido</h4>
<form id="form" method="get">
<div class="form-group">
<input
class="form-control"
type="text"
autocomplete="off"
placeholder="Introduce tu nombre"
name="name"
id="name"
required
/>
</div>
<fieldset>
<legend>Modo Juego</legend>
<div class="form-group d-flex justify-content-between">
<label for="clasic"
><input
class="form-control"
type="radio"
value="clasic"
name="mode"
required
checked
/>Clasico</label
>
<label for="time"
><input
class="form-control"
type="radio"
value="time"
name="mode"
required
disabled
/>Contra Tiempo</label
>
</div>
</fieldset>
<fieldset>
<legend>Nivel Dificultad</legend>
<div class="form-group d-flex justify-content-between">
<label
><input
class="form-control"
type="radio"
value="easy"
name="difficulty"
required
/>Facil</label
>
<label>
<input
class="form-control"
type="radio"
value="medium"
name="difficulty"
required
checked
/>
Medio
</label>
<label>
<input
class="form-control"
type="radio"
value="hard"
name="difficulty"
required
/>
Dificil
</label>
</div>
</fieldset>
<button class="btn btn-danger btn-block" type="submit">
Comenzar
</button>
</form>
</main>
<script src="./assets/src/jquery.min.js"></script>
<script src="./assets/src/bootstrap.min.js"></script>
<script src="./assets/src/index.js"></script>
</body>
</html>