-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
75 lines (67 loc) · 1.92 KB
/
Copy pathadmin.html
File metadata and controls
75 lines (67 loc) · 1.92 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>
<head>
<title>Panel de Administrador</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin-top: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border-radius: 4px;
}
.schedule {
display: grid;
grid-template-columns: repeat(8, 1fr);
gap: 4px;
margin-top: 20px;
}
.time-slot {
background-color: #eee;
padding: 8px;
text-align: center;
}
.time-slot:hover {
background-color: #ddd;
cursor: pointer;
}
</style>
</head>
<body>
<header>
<h1>Panel de Administrador</h1>
</header>
<div class="container">
<h2>Horario y Agendamiento de Canchas</h2>
<p>Selecciona una hora disponible para agendar:</p>
<div class="schedule">
<div class="time-slot">9:00 AM</div>
<div class="time-slot">10:00 AM</div>
<div class="time-slot">11:00 AM</div>
<div class="time-slot">12:00 PM</div>
<div class="time-slot">1:00 PM</div>
<div class="time-slot">2:00 PM</div>
<div class="time-slot">3:00 PM</div>
<div class="time-slot">4:00 PM</div>
<!-- Agrega más bloques de hora según tus necesidades -->
</div>
</div>
</body>
</html>