diff options
Diffstat (limited to 'templates/authopenid')
-rw-r--r-- | templates/authopenid/complete.html | 3 | ||||
-rwxr-xr-x | templates/authopenid/signin.html | 2 | ||||
-rw-r--r-- | templates/authopenid/signup.html | 6 |
3 files changed, 8 insertions, 3 deletions
diff --git a/templates/authopenid/complete.html b/templates/authopenid/complete.html index c967e8e2..62970e38 100644 --- a/templates/authopenid/complete.html +++ b/templates/authopenid/complete.html @@ -95,6 +95,9 @@ parameters: <p>{% trans "receive updates motivational blurb" %}</p> <div class='simple-subscribe-options'> {{email_feeds_form.subscribe}} + {% if email_feeds_form.errors %} + <p class="error">{% trans "please select one of the options above" %}</p> + {% endif %} </div> <p class='space-above'>{% trans "Tag filter tool will be your right panel, once you log in." %}</p> <div class="submit-row"><input type="submit" class="submit" name="bnewaccount" value="{% trans "create account" %}"/></div> diff --git a/templates/authopenid/signin.html b/templates/authopenid/signin.html index 51b8aa7f..aacdd490 100755 --- a/templates/authopenid/signin.html +++ b/templates/authopenid/signin.html @@ -71,7 +71,7 @@ </div>
<span><strong>http://{your-openid-url}</strong></span>
</li>-->
- <li class="direct first_tiny_li facebook" title="Facebook Connect">
+ <li class="first_tiny_li facebook" title="Facebook Connect">
{% if question %}
<fb:login-button onlogin="window.location = '{% url fb_signin_new_question %}'"></fb:login-button>
{% else %}
diff --git a/templates/authopenid/signup.html b/templates/authopenid/signup.html index d800eaf9..fdb236c2 100644 --- a/templates/authopenid/signup.html +++ b/templates/authopenid/signup.html @@ -15,10 +15,12 @@ <li><label for="password1_id">{{form.password1.label}}</label>{{form.password1}}{{form.password1.errors}}</li> <li><label for="password2_id">{{form.password2.label}}</label>{{form.password2}}{{form.password2.errors}}</li> </ul> - <p class="signup_p">{% trans "receive updates motivational blurb" %}</p> - <p class="signup_p">{% trans "Please select your preferred email update schedule for the following groups of questions:" %}</p> + <p class="margin-top">{% trans "receive updates motivational blurb" %}</p> <div class='simple-subscribe-options'> {{email_feeds_form.subscribe}} + {% if email_feeds_form.errors %} + <p class="error">{% trans "please select one of the options above" %}</p> + {% endif %} </div> <p class="signup_p">{% trans "Please read and type in the two words below to help us prevent automated account creation." %}</p> {{form.recaptcha}} |