Instead of generating the label and then a field without a label, we can directly generate a field with a label.
33 lines
1.3 KiB
Plaintext
33 lines
1.3 KiB
Plaintext
<h2><%= t("management.users.create_user_info") %></h2>
|
|
|
|
<div class="small-12 medium-6 column">
|
|
|
|
<div class="verification account">
|
|
<%= form_for @user, url: management_users_path do |f| %>
|
|
<%= f.hidden_field :document_type %>
|
|
<%= f.hidden_field :document_number %>
|
|
<%= f.text_field :username,
|
|
label: t("management.username_label"),
|
|
placeholder: t("management.username_label") %>
|
|
<%= f.text_field :email,
|
|
label: t("management.users.email_optional_label"),
|
|
placeholder: t("management.email_label") %>
|
|
<div class="date-of-birth">
|
|
<%= f.date_select :date_of_birth,
|
|
prompt: true,
|
|
start_year: 1900, end_year: 16.years.ago.year,
|
|
label: t("management.date_of_birth") %>
|
|
</div>
|
|
<%= f.submit t("management.users.create_user_submit"), class: "button success" %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="small-12 medium-6 column">
|
|
<div class="callout">
|
|
<%= render "management/user_permissions",
|
|
message: t("management.document_verifications.in_census_has_following_permissions"),
|
|
permissions: [:debates, :create_proposals, :support_proposals, :vote_proposals] %>
|
|
</div>
|
|
</div>
|