Upload files to "templates"

This commit is contained in:
2024-11-28 22:47:47 -05:00
parent 50a89e5ddf
commit d99dc3cf8a
5 changed files with 242 additions and 4 deletions

13
templates/login.html Normal file
View File

@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block content %}
<h1>Login</h1>
<form method="POST">
<label for="username">Username:</label>
<input type="text" name="username" id="username" required><br>
<label for="password">Password:</label>
<input type="password" name="password" id="password" required><br>
<button type="submit">Login</button>
</form>
<p>Don't have an account? <a href="{{ url_for('register') }}">Register here</a></p>
{% endblock %}