-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.html
More file actions
executable file
·146 lines (146 loc) · 6.46 KB
/
Copy pathcreate.html
File metadata and controls
executable file
·146 lines (146 loc) · 6.46 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml" />
<link rel="stylesheet" href="./styles/stylesP.css" />
<link rel="prefetch" href="./create.html" as="document" />
<link rel="prefetch" href="./index.html" as="document" />
<script async type="module" src="./JS/pdf.mjs"></script>
<link rel="prefetch" href="./JS/pdf.worker.mjs" as="script" />
<link rel="prefetch" href="./JS/offline-worker.js" as="script" />
<link rel="manifest" href="./pensum.json" />
<meta property="og:image" content="/manifest/banner.png">
<meta property="og:title" content="Pensum (UNEFA Electronica)">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="661">
<meta property="og:image:height" content="661">
<meta property="og:description" content="Visualizador/Generador de Pensum">
<meta name="description" content="Visualizador/Generador de Pensum">
<title>Create/Edit | Pensum Generator</title>
<style>
main {
display: none;
}
</style>
</head>
<body>
<main>
<div class="main">
<nav>
<img
data-url="./index.html"
src="./icons/arrow_back.svg"
alt="back"
/>
</nav>
<section class="create">
<form>
<h2>Crear Nuevo Pensum</h2>
<div class="form">
<label for="career">Nombre</label>
<input
type="text"
name="career"
id="career"
placeholder="Nombre del Pensum"
/>
</div>
<div class="form">
<label for="faculty">Facultad</label>
<input
type="text"
name="faculty"
id="faculty"
placeholder="Código del Pensum"
/>
</div>
<div class="form custom">
<label for="termName">Termino</label>
<select id="termName" name="termName">
<option value="Semestre,semestres">
Semestre
</option>
<option value="Cuatrimestre,cuatrimestres">
Cuatrimestre
</option>
<option value="Trimestre,trimestres">
Trimestre
</option>
<option value="Término,Términos">
Termino
</option>
<option value="Corte,Cortes">Corte</option>
<option value="Lapso,Lapsos">Lapso</option>
<option value="custom">Personalizado...</option>
</select>
<div class="new">
<h4>Nombre del Termino</h4>
<input
type="text"
name="termName0"
id="termName0"
placeholder="Singular"
/>
<input
type="text"
name="termName1"
id="termName1"
placeholder="Plural"
/>
</div>
</div>
<div class="form term">
<label for="term">Términos</label>
<input
type="number"
name="term"
id="term"
min="1"
value="1"
placeholder="Semestres del Pensum"
/>
</div>
<div class="form">
<label for="description">Descripción</label>
<textarea
name="description"
id="description"
placeholder="Descripción del Pensum"
></textarea>
</div>
<div class="form submit">
<button id="clear" type="reset">
<label for="clear">Limpiar</label>
</button>
<button id="open">
<img src="./icons/new_window.svg" />
<label for="open">Abrir</label>
</button>
<button id="create">
<img src="./icons/new_window.svg" />
<label for="create">Crear</label>
</button>
</div>
</form>
</section>
<section class="footer">
<p>
Desarrollado por
<a href="https://github.com/jackestar">Jackestar</a>
2025
</p>
</section>
</div>
</main>
<div class="container">
<canvas class="arrow"></canvas>
</div>
<script src="./JS/pensum.js"></script>
<script src="./JS/load.js"></script>
<script>
document.addEventListener("DOMContentLoaded", documentLoaded);
</script>
</body>
</html>