]> git.openstreetmap.org Git - rails.git/blob - app/views/users/new.html.erb
Refactor user registration form to use bootstrap
[rails.git] / app / views / users / new.html.erb
1 <% content_for :head do %>
2   <%= javascript_include_tag "user" %>
3 <% end %>
4
5 <% content_for :heading do %>
6   <h1><%= t ".title" %></h1>
7   <div class='header-illustration new-user-main'></div>
8   <div class='header-illustration new-user-arm'></div>
9 <% end %>
10
11 <div class="row">
12   <div class='text-muted col-sm order-sm-2'>
13     <h4><%= t ".about.header" %></h4>
14     <%= t ".about.html" %>
15   </div>
16
17   <div class="col-sm">
18     <%= bootstrap_form_for current_user, :url => { :action => "create" } do |f| %>
19       <%= hidden_field_tag("referer", h(@referer)) unless @referer.nil? %>
20
21       <%= f.email_field :email, :label => t(".email address"), :tabindex => 1 %>
22       <%= f.email_field :email_confirmation, :label => t(".confirm email address"), :help => t(".not_displayed_publicly_html"), :tabindex => 2 %>
23
24       <%= f.text_field :display_name, :label => t(".display name"), :help => t(".display name description"), :tabindex => 3 %>
25
26       <fieldset class="form-group" id="auth_field">
27         <label for="user_auth_provider"><%= t(".external auth") %></label>
28         <div class="form-row">
29           <%= f.select(:auth_provider, Auth.providers, :default => "", :hide_label => "true", :wrapper => { :class => "col-auto mb-0" }, :tabindex => 4) %>
30           <%= f.text_field(:auth_uid, :hide_label => true, :wrapper => { :class => "col mb-0" }, :tabindex => 5) %>
31         </div>
32         <small class="form-text text-muted"><%= t ".auth no password" %></small>
33       </fieldset>
34
35       <%= f.password_field :pass_crypt, :tabindex => 6 %>
36       <%= f.password_field :pass_crypt_confirmation, :tabindex => 7 %>
37
38       <div id="auth_prompt">
39         <p><%= link_to t(".use external auth"), "#", :id => "auth_enable" %></p>
40       </div>
41
42       <%= f.primary t(".continue"), :tabindex => 8 %>
43     <% end %>
44   </div>
45 </div>