Files
jobs/web/templates/admin/login.html
georg.sinn-schirwitz 23a67d7fe1 initial project commit
2025-08-29 15:07:58 +02:00

10 lines
356 B
HTML

{% extends 'base.html' %} {% block content %}
<h2>Login</h2>
<form method="post">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
<label>Username <input type="text" name="username" required /></label>
<label>Password <input type="password" name="password" /></label>
<button type="submit">Login</button>
</form>
{% endblock %}