{% extends 'base.html' %} {% load static %} {% block body %}
{% if error %} {{error}} {% endif %}
{% csrf_token %}
{{form.email}} {% if form.email.errors|length > 0 %} {{form.email.errors.0}} {% endif %}
{{form.password}} {% if form.password.errors|length > 0 %} {{form.password.errors.0}} {% endif %}

MIS PORTAL © 2025


{% for message in messages %} {% endfor %} {% endblock %}