refactor(login.html): move elements from main to #content

This commit is contained in:
2026-02-28 20:40:16 +01:00
parent 9971981f66
commit 840d9ce3c1

View File

@@ -9,9 +9,10 @@
<body> <body>
<div id="wrapper"> <div id="wrapper">
<header> <header>
<h1><a href="{{ url_for('index.index') }}">judas</a></h1> <h2><a href="{{ url_for('index.index') }}">judas</a></h2>
</header> </header>
<main> <main>
<div id="content">
<h1>Login</h1> <h1>Login</h1>
<form method="post" class="center"> <form method="post" class="center">
<label for="password">Password:</label> <label for="password">Password:</label>
@@ -26,6 +27,7 @@
</div> </div>
{% endif %} {% endif %}
</form> </form>
</div>
</main> </main>
</div> </div>
</body> </body>