<%page expression_filter="h"/> <%inherit file="../main.html" /> <%namespace name='static' file='/static_content.html'/> <%! from django.utils.translation import ugettext as _ from django.urls import reverse from opaque_keys.edx.keys import CourseKey from openedx.core.djangolib.js_utils import dump_js_escaped_json, js_escaped_string from openedx.core.djangolib.markup import HTML, Text %> <%namespace name='static' file='/static_content.html'/> <%block name="bodyclass">register verification-process step-select-track <%block name="pagetitle"> ${_("Enroll In {course_name} | Choose Your Track").format(course_name=course_name)} <%block name="js_extra"> <%static:webpack entry="Currency"> new Currency(); <%block name="header_extras"> <%block name="content"> % if error:

${_("Sorry, there was an error when trying to enroll you")}

${error}

%endif
% if offer_banner_fragment: ${HTML(offer_banner_fragment.content)} % endif
<% b_tag_kwargs = {'b_start': HTML(''), 'b_end': HTML('')} %> % if "verified" in modes:
% if has_credit_upsell: % if content_gating_enabled or course_duration_limit_enabled:

${_("Pursue Academic Credit with the Verified Track")}

% else:

${_("Pursue Academic Credit with a Verified Certificate")}

% endif

${_("Become eligible for academic credit and highlight your new skills and knowledge with a verified certificate. Use this valuable credential to qualify for academic credit, advance your career, or strengthen your school applications.")}

% if content_gating_enabled or course_duration_limit_enabled:

${_("Benefits of the Verified Track")}

  • ${Text(_("{b_start}Eligible for credit:{b_end} Receive academic credit after successfully completing the course")).format(**b_tag_kwargs)}
  • % if course_duration_limit_enabled:
  • ${Text(_("{b_start}Unlimited Course Access: {b_end}Learn at your own pace, and access materials anytime to brush up on what you've learned.")).format(**b_tag_kwargs)}
  • % endif % if content_gating_enabled:
  • ${Text(_("{b_start}Graded Assignments: {b_end}Build your skills through graded assignments and projects.")).format(**b_tag_kwargs)}
  • % endif
  • ${Text(_("{b_start}Easily Sharable: {b_end}Add the certificate to your CV or resume, or post it directly on LinkedIn.")).format(**b_tag_kwargs)}
  • ${Text(_("{b_start}Support our Mission: {b_end}EdX, a non-profit, relies on verified certificates to help fund affordable education to everyone globally.")).format(**b_tag_kwargs)}
% else:

${_("Benefits of a Verified Certificate")}

  • ${Text(_("{b_start}Eligible for credit:{b_end} Receive academic credit after successfully completing the course")).format(**b_tag_kwargs)}
  • ${Text(_("{b_start}Official:{b_end} Receive an instructor-signed certificate with the institution's logo")).format(**b_tag_kwargs)}
  • ${Text(_("{b_start}Easily shareable:{b_end} Add the certificate to your CV or resume, or post it directly on LinkedIn")).format(**b_tag_kwargs)}
% endif
    <%include file='_upgrade_button.html' args='content_gating_enabled=content_gating_enabled, course_duration_limit_enabled=course_duration_limit_enabled, min_price=min_price, price_before_discount=price_before_discount' />

% else: % if content_gating_enabled or course_duration_limit_enabled:

${_("Pursue the Verified Track")}

% else:

${_("Pursue a Verified Certificate")}

% endif

${_("Highlight your new knowledge and skills with a verified certificate. Use this valuable credential to improve your job prospects and advance your career, or highlight your certificate in school applications.")}

% if content_gating_enabled or course_duration_limit_enabled:

${_("Benefits of the Verified Track")}

    % if course_duration_limit_enabled:
  • ${Text(_("{b_start}Unlimited Course Access: {b_end}Learn at your own pace, and access materials anytime to brush up on what you've learned.")).format(**b_tag_kwargs)}
  • % endif % if content_gating_enabled:
  • ${Text(_("{b_start}Graded Assignments: {b_end}Build your skills through graded assignments and projects.")).format(**b_tag_kwargs)}
  • % endif
  • ${Text(_("{b_start}Easily Sharable: {b_end}Add the certificate to your CV or resume, or post it directly on LinkedIn.")).format(**b_tag_kwargs)}
  • ${Text(_("{b_start}Support our Mission: {b_end}EdX, a non-profit, relies on verified certificates to help fund affordable education to everyone globally.")).format(**b_tag_kwargs)}
% else:

${_("Benefits of a Verified Certificate")}

  • ${Text(_("{b_start}Official: {b_end}Receive an instructor-signed certificate with the institution's logo")).format(**b_tag_kwargs)}
  • ${Text(_("{b_start}Easily shareable: {b_end}Add the certificate to your CV or resume, or post it directly on LinkedIn")).format(**b_tag_kwargs)}
  • ${Text(_("{b_start}Motivating: {b_end}Give yourself an additional incentive to complete the course")).format(**b_tag_kwargs)}
  • ${Text(_("{b_start}Support our Mission: {b_end} EdX, a non-profit, relies on verified certificates to help fund free education for everyone globally")).format(**b_tag_kwargs)}
% endif
    <%include file='_upgrade_button.html' args='content_gating_enabled=content_gating_enabled, course_duration_limit_enabled=course_duration_limit_enabled, min_price=min_price, price_before_discount=price_before_discount' />

% endif
% endif % if "honor" in modes: ${_("or")}

${_("Audit This Course")}

${_("Audit this course for free and have complete access to all the course material, activities, tests, and forums.")}

% elif "audit" in modes: ${_("or")}

${_("Audit This Course (No Certificate)")}

## Translators: b_start notes the beginning of a section of text bolded for emphasis, and b_end marks the end of the bolded text. % if content_gating_enabled and course_duration_limit_enabled:

${Text(_("Audit this course for free and have access to course materials and discussions forums. {b_start}This track does not include graded assignments, or unlimited course access.{b_end}")).format(**b_tag_kwargs)}

% elif content_gating_enabled and not course_duration_limit_enabled:

${Text(_("Audit this course for free and have access to course materials and discussions forums. {b_start}This track does not include graded assignments.{b_end}")).format(**b_tag_kwargs)}

% elif not content_gating_enabled and course_duration_limit_enabled:

${Text(_("Audit this course for free and have access to course materials and discussions forums. {b_start}This track does not include unlimited course access.{b_end}")).format(**b_tag_kwargs)}

% else:

${Text(_("Audit this course for free and have complete access to all the course material, activities, tests, and forums. {b_start}Please note that this track does not offer a certificate for learners who earn a passing grade.{b_end}")).format(**b_tag_kwargs)}

% endif
% endif