go-wiki/templates/switch-team.html
2026-07-14 20:46:19 +02:00

21 lines
610 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team wählen Wiki</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body class="password-page">
<div class="card">
<h1>Team wählen</h1>
<p>Als Admin kannst du dir jedes Team ansehen.</p>
<form method="POST" action="/switch-team">
{{range .Teams}}
<button type="submit" name="team" value="{{.ID}}">{{.Name}}</button>
{{end}}
</form>
</div>
</body>
</html>