12 lines
368 B
HTML
12 lines
368 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Log In{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Log In</h2>
|
|
<form method="post">
|
|
<input type="text" placeholder="Username" name="username" id="username" required>
|
|
<input type="password" placeholder="Password" name="password" id="password" required>
|
|
<input type="submit" value="Log In">
|
|
</form>
|
|
{% endblock %} |