{% extends "base.html" %} {% load static %} {% load i18n %} {% load socialaccount %} {% block content %}

{% trans "Log In" %}

{% trans "Login" %}

{% trans "Don't have an account yet?" %} {% trans "Sign up for free" %}

{% if login_error %}
{{ login_error }}
{% endif %} {% if login_success %}
{{ login_success }}
{% endif %}
{% csrf_token %} {{ form.non_field_errors }}
{{ form.username }} {% if form.username.errors %}
{{ form.username.errors.0 }}
{% endif %}
{{ form.password }} {% if form.password.errors %}
{{ form.password.errors.0 }}
{% endif %}

{% trans "or Log-in with" %}

Shape Shape Shape Shape
{% if show_verify %}
{% csrf_token %} {{ otp_form.non_field_errors }} {% if otp_error %}


{{ otp_error }}

{% endif %} {{ otp_form.otp_code }}
{% endif %} {% endblock content %}