-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (73 loc) · 2.9 KB
/
index.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>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CalcuPromedioCURN</title>
<link rel="stylesheet" href="src/css/styles.css">
<link rel="stylesheet" href="src/css/index.css">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7590683309115850"
crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<h1>CalcuPromedioCURN</h1>
<form id="gradeForm">
<div class="form-group">
<label for="subject">Asignatura:</label>
<input type="text" id="subject" required>
</div>
<div class="form-group">
<label for="credits">Créditos:</label>
<input type="number" id="credits" required min="1" step="1">
</div>
<div class="grade-inputs">
<div class="form-group">
<label for="oep">OEP:</label>
<input type="number" id="oep" required min="0" max="5" step="0.01">
</div>
<div class="form-group">
<label for="eep">EEP:</label>
<input type="number" id="eep" required min="0" max="5" step="0.01">
</div>
<div class="form-group">
<label for="oes">OES:</label>
<input type="number" id="oes" required min="0" max="5" step="0.01">
</div>
<div class="form-group">
<label for="ees">EES:</label>
<input type="number" id="ees" required min="0" max="5" step="0.01">
</div>
<div class="form-group">
<label for="oef">OEF:</label>
<input type="number" id="oef" required min="0" max="5" step="0.01">
</div>
<div class="form-group">
<label for="eef">EEF:</label>
<input type="number" id="eef" required min="0" max="5" step="0.01">
</div>
</div>
<div class="button-group">
<button type="submit">Agregar Asignatura</button>
<button type="button" id="cancelEdit" class="hidden">Cancelar Edición</button>
</div>
</form>
<div class="table-container">
<table id="gradeTable">
<thead>
<tr>
<th>Asignatura</th>
<th>Créditos</th>
<th>Nota Final</th>
<th>Acciones</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div id="pps"></div>
</div>
<div id="frt"></div>
<script src="/src/js/index.js"></script>
</body>
</html>