-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactividades.php
More file actions
50 lines (46 loc) · 1.99 KB
/
actividades.php
File metadata and controls
50 lines (46 loc) · 1.99 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
<?php
session_start();
if(!isset($_SESSION['usuario'])){
header('Location: dashboard.php');
}
require_once('template/header.php');
?>
<main>
<div id="cabecera_id" class="cabecera">
<h1 class="titulo" >MONITOR DE TAREAS</h1>
<h3>Usuario <button onclick="location.href='cierreSesion.php'" type="button" class="btn btn-secondary">Salir</button></h3>
</div>
<div id="contenido_id" class="contenido">
<form action="#">
<p>Agregar una actividad
<button id="btn_terminar_id" type="button"
class="btn btn-success">Guardar</button>
<a class="btn btn-light" href="dashboard.php">ir a Dashboard</a></p>
<table>
<tr>
<td class="labels"> <label for="tarea_id">Actividad:</label></td>
<td> <input class="form-control" type="text" placeholder="Nombre de la actividad"></td>
</tr>
<tr>
<td class="labels"><label for="fecha_id">Detalles:</label></td>
<td><input class="form-control" type="text" placeholder="Descripcion...............">
</td>
</tr>
<tr>
<td class="labels"><label for="fechav_id">Fecha/Hora</label></td>
<td><input class="form-control" type="datetime-local" placeholder="">
</td>
</tr>
<tr>
<td class="labels"> <label for="tarea_id">Para tarea:</label></td>
<td>
<select class="form-control">
<option>Seleccionar tarea</option>
</select>
</td>
</tr>
</table>
</form>
</div>
</main>
<?php require_once('template/footer.php'); ?>