34 lines
2.0 KiB
HTML
34 lines
2.0 KiB
HTML
<%! from django.utils.translation import ugettext as _ %>
|
|
|
|
<div class="wrapper-content-supplementary">
|
|
<aside class="content-supplementary">
|
|
<ul class="list-help">
|
|
<li class="help-item help-item-whyreverify">
|
|
<h3 class="title">${_("Why Do I Need to Re-Verify?")}</h3>
|
|
<div class="copy">
|
|
<p>${_("There was a problem with your original verification. To make sure that your identity is correctly associated with your course progress, we need to retake your photo and a photo of your identification document. If you don't have a valid identification document, contact {link_start}{support_email}{link_end}.").format(
|
|
support_email=settings.DEFAULT_FEEDBACK_EMAIL,
|
|
link_start=u'<a href="mailto:{address}?subject={subject_line}">'.format(
|
|
address=settings.DEFAULT_FEEDBACK_EMAIL,
|
|
subject_line=_('Problem with ID re-verification')),
|
|
link_end=u'</a>')}</p>
|
|
</div>
|
|
</li>
|
|
|
|
<li class="help-item help-item-technical">
|
|
<h3 class="title">${_("Having Technical Trouble?")}</h3>
|
|
<div class="copy">
|
|
<p>${_("Please make sure your browser is updated to the {strong_start}{a_start}most recent version possible{a_end}{strong_end}. Also, please make sure your {strong_start}web cam is plugged in, turned on, and allowed to function in your web browser (commonly adjustable in your browser settings).{strong_end}").format(a_start='<a rel="external" href="http://browsehappy.com/">', a_end="</a>", strong_start="<strong>", strong_end="</strong>")}</p>
|
|
</div>
|
|
</li>
|
|
|
|
<li class="help-item help-item-questions">
|
|
<h3 class="title">${_("Have questions?")}</h3>
|
|
<div class="copy">
|
|
<p>${_("Please read {a_start}our FAQs to view common questions about our certificates{a_end}.").format(a_start='<a rel="external" href="'+ marketing_link('WHAT_IS_VERIFIED_CERT') + '">', a_end="</a>")}</p>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</aside>
|
|
</div> <!-- /wrapper-content-supplementary -->
|