@@ -27,8 +27,8 @@ from django.core.urlresolvers import reverse
## override in a more generalizable fashion.
% if not stanford_theme_enabled():
<divclass="cta cta-welcome">
<h3>${_("Welcome to {platform_name}!").format(platform_name=platform_name)}</h3>
<p>${_("Registering with {platform_name} gives you access to all of our current and future free courses. Not ready to take a course just yet? Registering also adds you to our mailing list - we will update you as courses are added.").format(platform_name=platform_name)}</p>
<h3>${_("Welcome to {platform_name}").format(platform_name=platform_name)}</h3>
<p>${_("Registering with {platform_name} gives you access to all of our current and future free courses. Not ready to take a course just yet? Registering puts you on our mailing list - we will update you as courses are added.").format(platform_name=platform_name)}</p>
</div>
% endif
...
...
@@ -37,17 +37,17 @@ from django.core.urlresolvers import reverse
% if stanford_theme_enabled():
<p>${_("You will receive an activation email. You must click on the activation link to complete the process. Don't see the email? Check your spam folder and mark emails from class.stanford.edu as 'not spam', since you'll want to be able to receive email from your courses.")}</p>
% else:
<p>${_("As part of registering with {platform_name}, you will receive an activation email. You must click on the activation link to complete the registration process. Don't see the email? Check your spam folder and mark {platform_name} emails as 'not spam'. At {platform_name}, we communicate mostly through email.").format(platform_name=platform_name)}</p>
<p>${_("As part of joining {platform_name}, you will receive an activation email. You must click on the activation link to complete the process. Don't see the email? Check your spam folder and mark {platform_name} emails as 'not spam'. At {platform_name}, we communicate mostly through email.").format(platform_name=platform_name)}</p>
% endif
</div>
% if settings.MKTG_URL_LINK_MAP.get('FAQ'):
<divclass="cta cta-help">
<h3>${_("Need Help?")}</h3>
<p>${_("Need help registering with {platform_name}?").format(platform_name=platform_name)}
<p>${_("Need help in registering with {platform_name}?").format(platform_name=platform_name)}
<ahref="${marketing_link('FAQ')}">
${_("View our FAQs for answers to commonly asked questions.")}
</a>
${_("After you register, you can find answers to most of your questions in course-specific FAQs and discussions.")}</p>
${_("Once registered, most questions can be answered in the course specific discussion forums or through the FAQs.")}</p>
## Translators: provider_name is the name of an external, third-party user authentication service (like Google or LinkedIn).
<buttontype="submit"class="button button-primary button-${enabled.NAME}"onclick="thirdPartySignin(event, '${pipeline.get_login_url(enabled.NAME, pipeline.AUTH_ENTRY_REGISTER)}');"><spanclass="icon ${enabled.ICON_CLASS}"></span>${_('Register with {provider_name}').format(provider_name=enabled.NAME)}</button>
<buttontype="submit"class="button button-primary button-${enabled.NAME}"onclick="thirdPartySignin(event, '${pipeline.get_login_url(enabled.NAME, pipeline.AUTH_ENTRY_REGISTER)}');"><spanclass="icon ${enabled.ICON_CLASS}"></span>${_('Sign up with {provider_name}').format(provider_name=enabled.NAME)}</button>
% endfor
</div>
...
...
@@ -137,7 +137,7 @@
<pclass="instructions">
${_('Create your own {platform_name} account below').format(platform_name=platform_name)}
<spanclass="note">${_('Required fields are indicated by <strongclass="indicator">bold text and an asterisk (*)</strong>.')}</span>
<spanclass="note">${_('Required fields are noted by <strongclass="indicator">bold text and an asterisk (*)</strong>.')}</span>
</p>
...
...
@@ -155,7 +155,7 @@
<pclass="instructions">
${_("Please complete the following fields to register for an account. ")}<br/>
${_('Required fields are indicated by <strongclass="indicator">bold text and an asterisk (*)</strong>.')}
${_('Required fields are noted by <strongclass="indicator">bold text and an asterisk (*)</strong>.')}
<spanclass="tip tip-input"id="username-tip">${_('The name that will identify you in your courses')} <strong>(${_('cannot be changed later')})</strong></span>
<spanclass="tip tip-input"id="username-tip">${_('Will be shown in any discussions or forums you participate in')} <strong>(${_('cannot be changed later')})</strong></span>
</li>
% if settings.FEATURES.get('ENABLE_THIRD_PARTY_AUTH') and running_pipeline: