Add meal tracker app: Flask + SQLite with auth, dashboard, 31 passing tests, Docker Compose

This commit is contained in:
agentbox
2026-07-31 21:25:59 +00:00
parent aabc83281b
commit d58828e0ef
17 changed files with 1214 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{% extends "base.html" %}
{% block title %}Login — Meal Tracker{% endblock %}
{% block content %}
<div class="form-card">
<h2>Log In</h2>
<form method="POST">
<label for="username">Username</label>
<input type="text" id="username" name="username" required autofocus>
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
<button type="submit" class="btn btn-primary">Log In</button>
</form>
<p class="form-footer">
Don't have an account? <a href="{{ url_for('auth.register') }}">Register</a>
</p>
</div>
{% endblock %}