15 lines
349 B
HTML
15 lines
349 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<form class="login-form" action_url="/login" method="POST">
|
|
<label for="email">Email: </label>
|
|
<input name="email" type="email"></input>
|
|
<br>
|
|
<label for="password">Password: </label>
|
|
<input name="password" type="password"></input>
|
|
<input type="submit">
|
|
</form>
|
|
|
|
{% endblock %}
|