Initial commit: Flask calorie counter app setup

Add base Flask application with user authentication, SQLAlchemy models for users, units, and food items, admin blueprint, and basic templates. Includes database migration setup, login form, and seed script for initial user creation.
This commit is contained in:
2025-06-26 14:19:09 +02:00
parent b9f2c420ef
commit b498f3693a
19 changed files with 531 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block content %}
<form method="post">
{{form.hidden_tag()}}
{{form.username()}}
{{form.password()}}
{{form.submit()}}
</form>
{% endblock%}