26 lines
640 B
HTML
26 lines
640 B
HTML
{% extends "base.html" %}
|
|||
|
|
|
||
|
|
{% block title %}Login - Reklamator{% endblock %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
<h1>Login</h1>
|
||
|
|
|
||
|
|
<form method="POST">
|
||
|
|
<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;">
|
||
|
|
<a href="{{ url_for('submission.form') }}">Return to feedback submission</a>
|
||
|
|
</p>
|
||
|
|
{% endblock %}
|