aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/user/_signup.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/user/_signup.html.erb')
-rw-r--r--app/views/user/_signup.html.erb51
1 files changed, 51 insertions, 0 deletions
diff --git a/app/views/user/_signup.html.erb b/app/views/user/_signup.html.erb
new file mode 100644
index 000000000..315ae6838
--- /dev/null
+++ b/app/views/user/_signup.html.erb
@@ -0,0 +1,51 @@
+<div id="signup">
+
+<%= form_tag({:action => "signup"}, {:id => "signup_form"}) do %>
+ <%= foi_error_messages_for :user_signup %>
+
+ <!--<h2><%= _('If you\'re new to {{site_name}}', :site_name=>site_name)%></h2>-->
+
+ <p>
+ <label class="form_label" for="user_signup_email"><%= _('Your e-mail:')%></label>
+ <%= text_field 'user_signup', 'email', { :size => 20, :tabindex => 60 } %>
+ </p>
+ <div class="form_item_note">
+ <%= raw(_('We will not reveal your email address to anybody unless you or
+ the law tell us to (<a href="%s">details</a>). ') %[help_privacy_path]) %>
+ </div>
+
+ <p>
+ <label class="form_label" for="user_signup_name"> <%= _('Your name:')%></label>
+ <%= text_field 'user_signup', 'name', { :size => 20, :tabindex => 70 } %>
+ </p>
+ <div class="form_item_note">
+ <%= raw(_('Your <strong>name will appear publicly</strong>
+ (<a href="%s">why?</a>)
+ on this website and in search engines. If you
+ are thinking of using a pseudonym, please
+ <a href="%s">read this first</a>.') % [help_privacy_path+"#public_request", help_privacy_path+"#real_name"]) %>
+ </div>
+
+ <p>
+ <label class="form_label" for="user_signup_password"> <%= _('Password:')%></label>
+ <%= password_field 'user_signup', 'password', { :size => 15, :tabindex => 80 } %>
+ </p>
+
+ <p>
+ <label class="form_label" for="user_signup_password_confirmation"> <%= _('Password: (again)')%></label>
+ <%= password_field 'user_signup', 'password_confirmation', { :size => 15, :tabindex => 90 } %>
+ </p>
+
+ <% if @request_from_foreign_country %>
+ <%= recaptcha_tags %>
+ <% end %>
+
+ <div class="form_button">
+ <%= hidden_field_tag 'token', params[:token], {:id => 'signup_token' } %>
+ <%= hidden_field_tag :modal, params[:modal], {:id => 'signup_modal' } %>
+ <%= submit_tag _('Sign up'), :tabindex => 100 %>
+ </div>
+
+<% end %>
+
+</div>