-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_menu.html
executable file
·93 lines (50 loc) · 2.49 KB
/
main_menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<title>Bienvenido al foro</title>
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title"><a style="color:white;text-decoration: none" href="./">ProfeAPP</a></span>
<div class="mdl-layout-spacer"></div>
<nav class="mdl-navigation mdl-layout--large-screen-only">
<a class="mdl-navigation__link" href="./aportar.html">APORTAR</a>
<a class="mdl-navigation__link" href="./main_menu.html">BUSCAR</a>
</nav>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title"><a style="color:black;text-decoration: none" href="./">ProfeAPP</a></span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="./aportar.html">APORTAR</a>
<a class="mdl-navigation__link" href="./main_menu.html">BUSCAR</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content">
<div class="mdl-grid">
<div style="margin: 0 auto" class="mdl-cell mdl-cell--5-col">
<!-- TODO ESTO ES LO PRINCIPAL -->
<form action="./prof_busqueda.php" method="post">
<h1>Buscar profesores</h1>
<div style="width: 100%;" class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" name="prof_search" id="sample1">
<label class="mdl-textfield__label" for="sample1">Profesor ...</label>
</div>
<button style="width: 100%;" class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored">
Buscar
</button>
</form>
</div>
</div>
</div>
</main>
</div>
</body>
</html>