-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (132 loc) · 4.41 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="shortcut icon" href="./img/favicon.png" type="image/x-icon" />
<title>Socios | Club Atlético Centenario</title>
</head>
<body>
<div style="background-color: #c1dbe4">
<nav
class="navbar navbar-expand-lg"
style="color: white; background-color: #012f41"
>
<div class="container-fluid">
<img
src="./img/logo.png"
alt="logo"
width="50"
height="50"
class="d-inline-block align-text-top"
/>
<a class="navbar-brand" style="color: white" href="#"
>C. A. CENTENARIO</a
>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link" href="#">Inicio</a>
<a class="nav-link active" aria-current="page" href="#">Socios</a>
<a class="nav-link" href="#">Cuota</a>
</div>
</div>
</div>
</nav>
<div style="display: flex">
<div class="mx-5">
<h1 class="titulo">¡HACETE SOCIO!</h1>
<div class="formulario">
<div class="mb-3">
<label class="form-label">Nombre</label>
<input
type="text"
class="form-control"
id="nombre"
placeholder="Nombre"
/>
</div>
<div class="mb-3">
<label class="form-label">Apellido</label>
<input
type="text"
class="form-control"
id="apellido"
placeholder="Apellido"
/>
</div>
<div class="mb-3">
<label class="form-label">Dirección</label>
<input
type="text"
class="form-control"
id="direccion"
placeholder="Dirección"
/>
</div>
<div class="mb-3">
<label class="form-label">Correo electrónico</label>
<input
type="email"
class="form-control"
id="email"
placeholder="[email protected]"
/>
</div>
<div class="mb-3">
<label class="form-label">Categoría</label>
<select
class="form-select"
id="categoria"
aria-label="Default select example"
>
<option selected disabled>Abre este menú select</option>
<option value="1">Cadete</option>
<option value="2">Socio Pleno</option>
<option value="3">Adherente</option>
</select>
</div>
<button type="submit" id="btnGuardarCliente">INSCRIBIRSE</button>
</div>
</div>
<div class="mx-5 w-100">
<h1 class="titulo">NUESTROS SOCIOS</h1>
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Nombre</th>
<th scope="col">Apellido</th>
<th scope="col">Categoría</th>
<th scope="col"></th>
</tr>
</thead>
<tbody id="tablaSocios"></tbody>
</table>
</div>
</div>
<div class="container px-0" style="max-width: 100%">
<footer class="py-1" style="color: white; background-color: #012f41">
<p class="text-center" style="color: white">© 2023 Gabriel Wagner</p>
</footer>
</div>
</div>
<script src="app.js"></script>
</body>
</html>