-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunidad1.php
68 lines (59 loc) · 1.25 KB
/
unidad1.php
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
<!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="estilos.css">
<style>
label{
display:block;
margin: 10px;
}
.unidades{
display: grid;
grid-template-columns:repeat(2,1fr);
background: black;
gap: .2rem;
padding: .2rem;
}
.unidades>*{
background: white;
padding: .2rem;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Programación en PHP y MySQL - Nivel Avanzado</h1>
<nav>
<?php include("botonera.php"); ?>
</nav>
</header>
<section>
<h2>Agenda de clases</h2>
<form action="insertar_clases.php" method="post">
<?php
if(isset($_GET['ok']))
echo '<span class="ok">Se ha registrado la unidad.</span>';
?>
<label>
<span>Unidad:</span>
<input required name="unidad">
</label>
<label>
<span>Fecha</span>
<input type="date" required name="fecha">
</label>
<input type="submit" value="Enviar">
</form>
</section>
<aside>
<?php require_once 'ver_clases.php'; ?>
</aside>
<footer>
<a href="https://site.elearning-total.com/courses/?com=lb">Programación en PHP y MySQL - Nivel Avanzado</a>
</footer>
</div>
</body>
</html>