2023-04-26 19:28:20 -04:00
|
|
|
{{ define "admin-upload-html" }}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>AGECEM</title>
|
|
|
|
{{ template "general-html" }}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ template "header-html" }}
|
2023-07-18 14:12:37 -04:00
|
|
|
<h1 class="titre1Page">Upload</h1>
|
2023-04-28 15:57:09 -04:00
|
|
|
<form action="/admin/documents/upload" method="post" enctype="multipart/form-data">
|
|
|
|
<label for="bucket">Type de document:</label>
|
|
|
|
|
|
|
|
<select name="bucket" id="bucket">
|
|
|
|
<option value="proces-verbaux">Procès verbaux</option>
|
|
|
|
<option value="politiques-et-reglements">Politiques et Règlements</option>
|
|
|
|
</select>
|
|
|
|
<br>
|
|
|
|
Document: <input type="file" name="document">
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<input type="submit" value="Submit">
|
|
|
|
</form>
|
2023-04-26 19:43:43 -04:00
|
|
|
<p>{{ .Message }}</p>
|
2023-04-26 19:28:20 -04:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{ end }}
|