Enhance grading interface with input and button

Added input field and button for adding grades.
This commit is contained in:
Cris
2026-01-30 20:05:24 -05:00
committed by GitHub
parent 03a7ef3253
commit 6995f3128d
+3
View File
@@ -19,6 +19,8 @@
<div class="notas"> <div class="notas">
<h4>Notas:</h4> <h4>Notas:</h4>
<input type="number" id="inputNota" step="0.1" placeholder="Ej: 4.5">
<button onclick="agregarNota()">Agregar nota</button>
<ul id="listaNotas"></ul> <ul id="listaNotas"></ul>
</div> </div>
@@ -33,4 +35,5 @@
<button onclick="hayAplazo()">Calcular promedio:</button> <button onclick="hayAplazo()">Calcular promedio:</button>
</div> </div>
</body> </body>
</html> </html>