-
Notifications
You must be signed in to change notification settings - Fork 0
/
docente.php
70 lines (57 loc) · 1.23 KB
/
docente.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
69
70
<html>
<?php $title = 'Menú Docente'; ?>
<?php $currentPage = 'docente'; ?>
<?php include('head.php'); ?>
<?php include('nav-bar.php'); ?>
<style>
*{
margin: 0;
padding: 0;
}
ul{
list-style: none;
}
#menu li>a{
background-color: #00162b;
color: white;
padding: 10px;
display: block;
text-decoration: none;
min-width: 100px;
}
#menu li>a:hover{
color: #000;
background-color: #eaeaea;
}
#menu>li{
float: left;
text-align:center
}
#menu>li>ul{
display: none;
}
#menu>li:hover>ul {
display:block;
}
</style>
<body>
<header class="row">
<nav class="col-12 text-white py-3" >
<ul id="menu">
<li><a href="crearCuestionario.php">Crear Encuesta</a></li>
<li><a href="resEncuestaPro.php ">Ver resultado de encuestas</a></li>
<li><a href="reporteEncuesta.php ">Reporte</a></li>
</ul>
</nav>
</header>
<main class="row p-4">
<form action="" class="row">
<?php
session_start();
$usuario = $_SESSION['username'];
echo "<h1>Bienvenido $usuario al menú de Encuestas</h1>";
?>
</form>
</main>
</body>
</html>