aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/views/user/_signup.rhtml39
1 files changed, 20 insertions, 19 deletions
diff --git a/app/views/user/_signup.rhtml b/app/views/user/_signup.rhtml
index 85b90eafc..f639f2862 100644
--- a/app/views/user/_signup.rhtml
+++ b/app/views/user/_signup.rhtml
@@ -6,39 +6,40 @@
<h2>If you're new to WhatDoTheyKnow</h2>
<p>
- <label class="form_label" for="user_signup_email">Your e-mail:</label>
- <%= text_field 'user_signup', 'email', { :size => 20 } %>
+ <label class="form_label" for="user_signup_email">Your e-mail:</label>
+ <%= text_field 'user_signup', 'email', { :size => 20 } %>
</p>
<div class="form_item_note">
- We will not reveal your email address to anybody unless you or
- the law tell us to
- (<a href="/help/about/#privacy">details</a>).
+ We will not reveal your email address to anybody unless you or
+ the law tell us to
+ (<a href="/help/about/#privacy">details</a>).
</div>
<p>
- <label class="form_label" for="user_signup_name">Your name:</label>
- <%= text_field 'user_signup', 'name', { :size => 20 } %>
+ <label class="form_label" for="user_signup_name">Your name:</label>
+ <%= text_field 'user_signup', 'name', { :size => 20 } %>
</p>
- <div class="form_item_note">Your <strong>name will appear
- publically</strong>
- (<a href="/help/about/#privacy">details</a>)
- on this website and in search engines. We encourage you
- to use your real name, but you may use a pseudonym if you would like to be
- anonymous.</div>
+ <div class="form_item_note">
+ Your <strong>name will appear publically</strong>
+ (<a href="/help/about/#public_request">why?</a>)
+ on this website and in search engines. We encourage you
+ to use your real name, but you may use a
+ pseudonym if you <a href="/help/about/#real_name">read this first</a>.
+ </div>
<p>
- <label class="form_label" for="user_signup_password">Password:</label>
- <%= password_field 'user_signup', 'password', { :size => 15 } %>
+ <label class="form_label" for="user_signup_password">Password:</label>
+ <%= password_field 'user_signup', 'password', { :size => 15 } %>
</p>
<p>
- <label class="form_label" for="user_signup_password_confirmation">Password: (again)</label>
- <%= password_field 'user_signup', 'password_confirmation', { :size => 15 } %>
+ <label class="form_label" for="user_signup_password_confirmation">Password: (again)</label>
+ <%= password_field 'user_signup', 'password_confirmation', { :size => 15 } %>
</p>
<div class="form_button">
- <%= hidden_field_tag 'token', params[:token], { :id => 'signup_token' } %>
- <%= submit_tag "Sign up" %>
+ <%= hidden_field_tag 'token', params[:token], { :id => 'signup_token' } %>
+ <%= submit_tag "Sign up" %>
</div>
<% end %>