Refactor shared layouts and remove unused CSS

This commit is contained in:
2026-02-26 10:53:34 +01:00
parent 7f866282ea
commit d1b5a6b480
9 changed files with 367 additions and 185 deletions
+12 -9
View File
@@ -1,9 +1,12 @@
<h1>Login</h1>
<form method="POST">
<input name="username" placeholder="Username" required />
<input name="password" type="password" placeholder="Password" required />
<button type="submit">Login</button>
</form>
<a href="{{ url_for('auth.register') }}">Register</a>
{% 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 %}