28 lines
796 B
Text
28 lines
796 B
Text
{{ 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" }}
|
|
<h1>Upload</h1>
|
|
<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>
|
|
<p>{{ .Message }}</p>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|