mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 02:22:21 +00:00
13 lines
379 B
HTML
13 lines
379 B
HTML
{% extends "layouts/default.html" %}
|
|
|
|
{% block content %}
|
|
<h1>Login</h1>
|
|
<form action="login" method="post">
|
|
<label for="username">Username</label>
|
|
<input type="text" name="username" placeholder="username">
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password" placeholder="password">
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
{% endblock %}
|