forked from 3wordchant/capsul-flask
10 lines
226 B
HTML
10 lines
226 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
|
||
|
{% block content %}
|
||
|
<form method="post">
|
||
|
<label for="email">Email Address</label>
|
||
|
<input name="email" id="email" required>
|
||
|
<input type="submit" value="Log In">
|
||
|
</form>
|
||
|
{% endblock %}
|