Private
Public Access
1
0

adding poll for next week sessions

This commit is contained in:
2025-07-20 16:15:15 +02:00
parent 5b6e87fedd
commit 01d4cf659e
8 changed files with 253 additions and 2 deletions

View File

@@ -0,0 +1,32 @@
{% extends "newbase.html" %}
{% load static %}
{% load rowerfilters %}
{% block title %}Login to Deep Water{% endblock %}
{% block main %}
<h1>Login to Deep Water</h1>
<!-- clack_login.html -->
<form method="post"{% if redirect_url %}?redirect={{ redirect_url|urlencode }}{% endif %}>
{% csrf_token %}
{% if error %}
<div class="error">{{ error }}</div>
{% endif %}
<div>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
</div>
<div>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit">Login</button>
</form>
{% endblock %}