-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/show register on dom #43
base: main
Are you sure you want to change the base?
Changes from all commits
12e0665
bb8f052
0a43255
ee95f85
f225db0
4909bd4
8ec370e
aaae9b6
9a0ca2f
706db55
9e6c6f9
bb7c2f9
1084f09
00e4176
43c6d52
28fdc8c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,9 @@ | |
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. qui c'è un tag head sdoppiato, qualcosa sarà andato storto nel merge |
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
@@ -24,7 +27,7 @@ | |
crossorigin="anonymous" | ||
></script> | ||
<script src="script.js"></script> | ||
<script type="module" src="view.js" defer></script> | ||
<script src="view.js" defer></script> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Perchè è stata rimossa la dichiarazione module? |
||
</head> | ||
<body> | ||
<header> | ||
|
@@ -61,12 +64,12 @@ <h4 class="aggiungi">+</h4> | |
<section class="VisualeLezione d-flex flex-column flex-grow-1"> | ||
<h2 class="TitoloMateria">Chimica</h2> | ||
<div class="OpzioniMateria"> | ||
<button class="btn btn-primary BottoneElencaStudenti"> | ||
Elenco studenti | ||
<button class="BottoneElencaStudenti"> | ||
<a href="elenco.html">Elenco studenti</a> | ||
</button> | ||
|
||
<button class="btn btn-primary BottoneMostraLezioni"> | ||
Lezioni | ||
<button class="BottoneMostraLezioni"> | ||
<a class="Lezioni">Lezioni</a> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. merge errati da 67 a 72, andavano lasciati i bottoni |
||
</button> | ||
</div> | ||
|
||
|
@@ -89,8 +92,12 @@ <h3 class="Edita">edita</h3> | |
</div> | ||
</main> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<!-- Aggiunta della sezione per mostrare i registri --> | ||
<div id="registro-container" class="RegistroContainer"> | ||
<!-- Qui verranno aggiunti dinamicamente i registri --> | ||
</div> | ||
</section> | ||
|
||
<div class="container-fluid"> | ||
<div class="row"> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Il problema è che il container per i registri esisteva già:
riga 72:
<div class="Registro flex-grow-1"></div>