18 lines
516 B
HTML
18 lines
516 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1>Login</h1>
|
|
{% if error %}
|
|
<p style="color: red;">{{ error }}</p>
|
|
{% endif %}
|
|
<form method="POST">
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" name="username" required><br><br>
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password" required><br><br>
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
<br>
|
|
<a href="{{ url_for('login', google=1) }}">Login with Google</a>
|
|
|
|
{% endblock %} |