forked from enviPath/enviPy
Current Dev State
This commit is contained in:
14
templates/login/email_login.html
Normal file
14
templates/login/email_login.html
Normal file
@ -0,0 +1,14 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user