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,12 +4,22 @@
<meta charset="utf-8"/>
<title>Mes albums</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>
<h1>Mes albums</h1>
<!-- FORMULAIRE AJOUT ALBUM -->
<h3>Créer un album</h3>
<h2>Créer un album</h2>
<form th:action="@{/albums/create}" method="post">
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}" />
<label>Nom :</label>
@@ -64,7 +74,14 @@
</div>
</div>
</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>