Files
tuxinet-streamhub/backend/app/templates/login.html
T
2026-03-23 00:37:22 +01:00

13 lines
391 B
HTML

{% extends 'base.html' %}
{% block title %}Login{% endblock %}
{% block content %}
<div class="card narrow">
<h1>Login</h1>
<form method="post" class="form-grid">
<label>Brugernavn<input type="text" name="username" required></label>
<label>Kodeord<input type="password" name="password" required></label>
<button type="submit">Log ind</button>
</form>
</div>
{% endblock %}