new file: .env.example

new file:   .gitignore
	new file:   Dockerfile
	new file:   README.md
	new file:   app.py
	new file:   auth.py
	new file:   config.py
	new file:   db.py
	new file:   db_helpers.py
	new file:   docker-compose.yml
	new file:   requirements.txt
	new file:   routes/__init__.py
	new file:   routes/admin_routes.py
	new file:   routes/auth_routes.py
	new file:   routes/journal_routes.py
	new file:   static/css/style.css
	new file:   static/js/main.js
	new file:   templates/admin/dashboard.html
	new file:   templates/admin/users.html
	new file:   templates/base.html
	new file:   templates/day.html
	new file:   templates/future.html
	new file:   templates/index.html
	new file:   templates/login.html
	new file:   templates/week.html
This commit is contained in:
SimolZimol
2026-08-02 20:41:24 +02:00
commit 0e7efe4b74
25 changed files with 1590 additions and 0 deletions

19
templates/login.html Normal file
View File

@@ -0,0 +1,19 @@
{% extends "base.html" %}
{% block title %}Anmelden Bullet Journal{% endblock %}
{% block content %}
<div class="auth-card">
<h1>Anmelden</h1>
<p class="muted">Bitte melde dich mit deinem Konto an.</p>
<form method="post" action="{{ url_for('auth.login') }}" class="stack">
<label>
Benutzername
<input type="text" name="username" required autofocus>
</label>
<label>
Passwort
<input type="password" name="password" required>
</label>
<button type="submit" class="btn btn-primary">Anmelden</button>
</form>
</div>
{% endblock %}