1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-06 20:57:45 +00:00
kawari/resources/templates/login.html

14 lines
509 B
HTML

{% extends "login_base.html" %}
{% block title %}Kawari - Login{% endblock %}
{% block loginbody %}
<form method='post'>
<label for="username" class="form-label">Username</label><br>
<input type='text' id='username' name='username' class="form-control"/><br>
<label for="password" class="form-label">Password</label><br>
<input id='password' name='password' class="form-control" type="password"/><br>
<button type='submit' class="btn btn-primary">Login</button>
</form>
{% endblock %}