-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCU025.html
executable file
·86 lines (80 loc) · 3.11 KB
/
CU025.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
<!DOCTYPE>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<link rel="stylesheet" href="css/editor.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
</head>
<header>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<!-- Brand/logo -->
<a class="navbar-brand" href="#"><img src="img/upiic.png" class="float-right" width="100" height="100"/></a>
<!-- Links -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">INICIO</a>
</li>
<li class="nav-item">
<a class="nav-link" href="CU030.html">EXAMENES</a>
</li>
<li class="nav-item">
<a class="nav-link" href="CU025.html">PERFIL</a>
</li>
<li class="nav-item">
<a class="nav-link" href="CU029.html">NOTIFICACIONES</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./index.html">CERRAR SESION</a>
</li>
</ul>
</nav>
</header>
<body>
<div>
<h1></h1>
<h2>CONGIGURACION</h2>
<form>
<span> Activar modo offline: </span>
<br>
<input type="radio" name="cheese" id="yes" value="yes">
<label for="yes">Si</label>
<input type="radio" name="cheese" id="no" value="yes">
<label for="no">No</label>
<br>
<!-- <label for="bun">¿De que categoria son las preguntas?</label>
<select name="bun" id="bun">
<option value="sesame">Geografia</option>
<option value="potatoe">Matematicas</option>
<option value="pretzel">Aeronautica</option>
</select>
<br>
<label for="q1">Agrga pregunta 1</label>
<br>
<input id="q1" type="text" placeholder="Pregunta 1" name="q1">
<br>
<label for="q2">Agrega respuesta a pregunta 1 </label>
<br>
<input id="q2" type="text" placeholder="Pregunta 2" name="q2">
<br>
<span> Respuesta en opcion multiple</span>
<br>
<input type="checkbox" name="qus" id="a" value="a">
<label for="a"> a)opcion a </label>
<input type="checkbox" name="qus" id="b" value="b">
<label for="b"> b)opcion b </label>
<input type="checkbox" name="qus" id="c" value="c">
<label for="c"> c)opcion c </label>
<input type="checkbox" name="qus" id="d" value="d">
<label for="d"> d)opcion d </label>
<br> -->
<input id="2" type="submit" class="btn btn-info" name="b2" value="Terminar configuracion">
<input id="2" type="submit" class="btn btn-info" name="b2" value="Seguir configurando">
</form>
</div>
</body>
</html>