Initial commit

This commit is contained in:
2024-12-05 22:56:57 +01:00
commit 1df066fe6c
9 changed files with 787 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{% extends 'layout.html' %}
{% block title %}Login{% endblock %}
{% block content %}
<div class="center-box">
<div class="center-box-content m-2 center">
<h1>Login</h1>
<form method="POST" class="form-control m-auto">
<label>Username:</label>
<input type="text" name="username" required>
<label>Password:</label>
<input type="password" name="password" required>
<button type="submit" class="btn btn-success">Login</button>
</form>
</div>
</div>
{% endblock %}