2023-04-26 19:28:20 -04:00
|
|
|
{{ define "admin-html" }}
|
2023-08-15 14:30:10 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>AGECEM</title>
|
|
|
|
{{ template "general-html" }}
|
2023-08-18 17:44:15 -04:00
|
|
|
<link rel="stylesheet" href="/public/css/admin.css">
|
2023-08-15 14:30:10 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ template "header-html" }}
|
2023-08-18 17:44:15 -04:00
|
|
|
<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>
|
2023-08-15 14:30:10 -04:00
|
|
|
</body>
|
|
|
|
</html>
|
2023-04-26 19:28:20 -04:00
|
|
|
{{ end }}
|