initial commit

This commit is contained in:
Franzi 2021-12-21 08:30:36 +01:00
commit 602127cbdc
Signed by: kunsi
GPG key ID: 12E3D2136B818350
7 changed files with 353 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{% extends "layout/default.html" %}
{% block content %}
<form action="{{ url_for("login") }}" method="post">
<fieldset>
<legend>Login</legend>
<div class="mb-3">
<label for="username" class="form-label">Username</label>
<input type="text" name="username" id="username" required class="form-control">
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" name="password" id="password" required class="form-control">
</div>
<input type="submit" value="Login" class="btn btn-primary mb-3">
</fieldset>
</form>
{% endblock %}