{% extends "career_app/base.html" %} {% block content %} {% load static %}

Login

Access your learning management system dashboard


{% if form.errors %}
{% for field, errors in form.errors.items %}
{{ field }}: {% for error in errors %}

- {{ error }}

{% endfor %}
{% endfor %}
{% endif %}

Login

{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
{% csrf_token %}
{% if user.id and not user.is_active %}

Haven't received your verification email? Click here to resend verification email.

{% endif %}

Don't have an account? Sign up here

Forgot your password? Reset Password

{% endblock %}