Upload files to "templates"
This commit is contained in:
13
templates/login.html
Normal file
13
templates/login.html
Normal 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 %}
|
Reference in New Issue
Block a user