Commit 9e893ead by Giulio Gratta

Conditionalize register.html because we can't have the word 'certificate' anywhere

parent 0ca89681
...@@ -135,7 +135,13 @@ ...@@ -135,7 +135,13 @@
<li class="field required text" id="field-name"> <li class="field required text" id="field-name">
<label for="name">${_('Full Name')}</label> <label for="name">${_('Full Name')}</label>
<input id="name" type="text" name="name" value="" placeholder="${_('example: Jane Doe')}" required aria-required="true" aria-describedby="name-tip" /> <input id="name" type="text" name="name" value="" placeholder="${_('example: Jane Doe')}" required aria-required="true" aria-describedby="name-tip" />
<span class="tip tip-input" id="name-tip">${_("Needed for any certificates you may earn <strong>(cannot be changed later)</strong>")}</span> <span class="tip tip-input" id="name-tip">
% if self.stanford_theme_enabled():
${_("Needed for any Statements of Accomplishment you may earn <strong>(cannot be changed later)</strong>")}
% else:
${_("Needed for any certificates you may earn <strong>(cannot be changed later)</strong>")}
% endif
</span>
</li> </li>
</ol> </ol>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment