This repository has been archived on 2025-04-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
home-stream/home_stream/templates/login.html
2025-04-01 21:41:16 +02:00

22 lines
505 B
HTML

<!--
SPDX-FileCopyrightText: 2025 Max Mehl <https://mehl.mx>
SPDX-License-Identifier: GPL-3.0-only
-->
{% extends "base.html" %}
{% block content %}
<h2>Login</h2>
{% if error %}
<p style="color: red">{{ error }}</p>
{% endif %}
<form method="post">
<label for="username">Username</label>
<input name="username" type="text" autofocus required>
<label for="password">Password</label>
<input name="password" type="password" required>
<button type="submit">Login</button>
</form>
{% endblock %}