{% load static %} {% block title %}{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}

Login

{% csrf_token %}
{{ form.email.label_tag }}
{{ form.email }}
{{ form.password.label_tag }}
{{ form.password }}
{% if otp_sent %}
{% csrf_token %}
{{ otp_form.otp.label_tag }} {{ otp_form.otp }}
{% endif %}
{% endblock %} {% comment %} {% extends "base.html" %} {% endcomment %} {% comment %} {% load static %} {% block title %}Login{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}

Login

{% csrf_token %}
{{ form.username.label_tag }} {{ form.username }}
{{ form.password.label_tag }}
{{ form.password }}
{% comment %}
{% csrf_token %} {{ form.username.label_tag }} {{ form.username }}
{{ form.password.label_tag }}
{{ form.password }}
{% endcomment %} {% comment %}
{% endcomment %} {% comment %} {% endcomment %}