aboutsummaryrefslogtreecommitdiff
path: root/templates/user.html
blob: 7cb0d11b181d4660133c57a702f3ebde8313db7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{define "title"}}Acceuil{{end}}
{{define "content"}}
<h1>Espace utilisateur</h1>
<h2>Documents</h2>
<div>
	<form action="/upload" method="POST" enctype="multipart/form-data">
		<input type="file" name="files" multiple />
		<input type="submit" value="Upload" />
	</form>
	<ul>
		{{range .Docs}}
		<li>
			<a href="{{.Link}}">{{.Name}}</a>
		</li>
		{{end}}
	</ul>
</div>
{{end}}