{% extends 'base.html' %} {% load widget_tweaks %} {% block title %}OTP verification{% endblock title %} {% block content %} {% if messages %} {% for message in messages %} {% if 'error' in message.tags %} {% include 'components/alert.html' with is_info=False title="Error" body=message %} {% endif %} {% endfor %} {% endif %} {% include 'components/header.html' with title="OTP verification" description="Provide your one time password" %}
{% csrf_token %}
{{ form.otp|add_class:"bg-slate-100 dark:bg-slate-300 text-slate-800 rounded-lg p-3 drop-shadow-xl w-full" }}
{% endblock content %}