First commit

This commit is contained in:
csd4ni3l
2025-08-08 18:08:41 +02:00
commit 8ab56b218f
18 changed files with 1552 additions and 0 deletions

23
templates/login.jinja2 Normal file
View File

@@ -0,0 +1,23 @@
{% extends "base.jinja2" %}
{% block title %}Grass Touching Login{% endblock %}
{% block body %}
<div class="d-flex justify-content-center align-items-center" style="height: 75vh;">
<div class="bg-white rounded rounded-5 border border-5 border-white p-4">
<h2>Login</h2>
<form target="/login" method="post">
<div class="form-group" style="margin-top: 4%;">
<label for="usernameinput">Username</label>
<input name="username" class="form-control" id="usernameinput" placeholder="Enter username">
</div>
<div class="form-group" style="margin-top: 4%;">
<label for="passwordinput">Password</label>
<input name="password" class="form-control" id="passwordinput" placeholder="Enter password">
</div>
<button disabled id="submit" type="submit" class="btn btn-primary mx-auto d-block" style="width: 100%; margin-top: 4%;">Submit</button>
</form>
</div>
</div>
{% endblock %}