21 lines
610 B
HTML
21 lines
610 B
HTML
<!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>
|