forked from enviPath/enviPy
15 lines
352 B
HTML
15 lines
352 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% if request.user.is_authenticated %}
|
|
<p>You are already logged in as {{ request.user.email }}.</p>
|
|
{% endif %}
|
|
<form action="{{ request.path }}" method="POST">
|
|
{% csrf_token %}
|
|
<p>
|
|
{{ form }}
|
|
<input type="submit" value="Send log in link">
|
|
</p>
|
|
</form>
|
|
{% endblock content %}
|