2025-10-16 15:14:51 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block title %}Login - Reklamator{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
<h1>Login</h1>
|
|
|
|
|
|
|
|
|
|
<form method="POST">
|
2025-10-16 15:30:45 +02:00
|
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
|
|
|
|
|
|
2025-10-16 15:14:51 +02:00
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="username">Username</label>
|
|
|
|
|
<input type="text" id="username" name="username" required autofocus>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="password">Password</label>
|
|
|
|
|
<input type="password" id="password" name="password" required>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<button type="submit">Login</button>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<p style="margin-top: 20px;">
|
2025-10-17 15:26:54 +02:00
|
|
|
<a href="{{ url_for('landing.index') }}">Return to home page</a>
|
2025-10-16 15:14:51 +02:00
|
|
|
</p>
|
|
|
|
|
{% endblock %}
|