{% extends "www/cohorts/base.html" %} {% block title %}Join Course{% endblock %} {% block page_content %}

Join Course

Course: {{course.title}}

Cohort: {{cohort.title}}

Subgroup: {{subgroup.title}}

{% if frappe.session.user == "Guest" %}

Please login to be able to join the course.

If you don't already have an account, you can sign up for a new account.

Login to continue
{% elif subgroup.has_student(frappe.session.user) %}

You are already a student of this course.

Start Learning →
{% elif subgroup.has_join_request(frappe.session.user) %}

We have received your request to join the course. You'll hear back from us soon.

{% else %} Join the course {% endif %} {% endblock %} {% block script %} {% endblock %}