Remove PyPi build, convert project to not be a python module, add Docker build and files, update README,

This commit is contained in:
csd4ni3l
2025-10-23 11:01:21 +02:00
parent a9b5a53bdb
commit 391d55edba
16 changed files with 77 additions and 60 deletions

16
templates/index.jinja2 Normal file
View File

@@ -0,0 +1,16 @@
{% extends "base.jinja2" %}
{% block title %}LoginWeen Home{% endblock %}
{% block nav %}
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/logout">Logout</a>
</li>
{% endblock %}
{% block body %}
<p>LoginWeen is a an app where you login/register with a halloween pumpkin carving as a password.</p>
{% endblock body %}