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