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