mirror of
https://github.com/StefBuwalda/cal_counter.git
synced 2025-10-29 19:00:00 +00:00
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:
10
application/templates/login.html
Normal file
10
application/templates/login.html
Normal file
@@ -0,0 +1,10 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<form method="post">
|
||||
{{form.hidden_tag()}}
|
||||
{{form.username()}}
|
||||
{{form.password()}}
|
||||
{{form.submit()}}
|
||||
</form>
|
||||
{% endblock%}
|
||||
Reference in New Issue
Block a user