CORRECTION : MAJ balises html pour cohérence dans la forme

This commit is contained in:
2025-12-03 14:57:58 +01:00
parent 96c060e206
commit 50ad334177
14 changed files with 266 additions and 64 deletions

View File

@@ -4,6 +4,16 @@
<meta charset="utf-8"/>
<title>Détail album</title>
</head>
<header>
<p>
<a th:href="@{/}">Accueil</a> |
<a th:href="@{/upload}">Uploader une photo</a> |
<a th:href="@{/mes-photos}">Mes photos</a> |
<a th:href="@{/mes-albums}">Mes albums</a> |
<a th:href="@{/galerie}">Galerie publique</a>
</p>
<hr/>
</header>
<body>
<a th:href="@{/mes-albums}">⬅ Retour aux albums</a>
@@ -46,7 +56,7 @@
<button type="submit">Ajouter</button>
</form>
<hr/>
<h3>Gestion des partages de lalbum</h3>
<h2>Gestion des partages de lalbum</h2>
<div th:if="${param.error}" style="color:red; font-weight:bold;">
<span th:text="${param.error}"></span>
</div>
@@ -94,8 +104,14 @@
Supprimer lalbum
</a>
</div>
</body>
<footer>
<hr/>
<form th:action="@{/logout}" method="post" style="display: inline;">
<button type="submit"
style="background: none; border: none; color: blue; text-decoration: underline; cursor: pointer;">
Se déconnecter
</button>
</form>
</footer>
</html>