webdav/templates/index.html
Artur Gurgul a0a338067b init
2025-04-25 08:44:55 +02:00

25 lines
No EOL
448 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>File List</title>
</head>
<body>
{{if .IsLoggedIn}}
<p>Welcome back!</p>
{{else}}
<p>Please log in to access more features.</p>
{{end}}
<h2>Files</h2>
{{if .Files}}
<ul>
{{range .Files}}
<li>{{.FileName}}</li>
{{end}}
</ul>
{{else}}
<p>No files available.</p>
{{end}}
</body>
</html>