formattage des options sur admin.gohtml

This commit is contained in:
Alexel 2023-08-18 17:44:15 -04:00
parent 09e0690d50
commit 339feb2e52
2 changed files with 24 additions and 4 deletions

View file

@ -5,13 +5,16 @@
<meta charset="utf-8">
<title>AGECEM</title>
{{ template "general-html" }}
<link rel="stylesheet" href="/public/css/admin.css">
</head>
<body>
{{ template "header-html" }}
<h1 class="heading1">Admin</h1>
<ul>
<li><a href="/admin/documents/upload">Ajout de document</a></li>
</ul>
<div class="wrapper adminWrapper">
<h1 class="heading1">Admin</h1>
<div class="adminOptions">
<button class="adminOption" onclick="location.href = '/admin/documents/upload'">Ajout de document</a>
</div>
</div>
</body>
</html>
{{ end }}