This repository has been archived on 2026-03-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cau-praktikum/app/templates/login.html
T

13 lines
471 B
HTML

{% extends "base_public.html" %} {% block title %}Login{% endblock %} {% block
content %}
<section class="public-card">
<h1>Login</h1>
<form method="POST" class="auth-form">
<input name="username" placeholder="Username" required />
<input name="password" type="password" placeholder="Password" required />
<button type="submit" class="link-button">Login</button>
</form>
<a href="{{ url_for('auth.register') }}">Register</a>
</section>
{% endblock %}