16 lines
505 B
Text
16 lines
505 B
Text
<div class="container">
|
|
<%= simple_form_for @membership_application do |f| %>
|
|
<%= f.input :first_name %>
|
|
<%= f.input :last_name %>
|
|
<%= f.input :middle_name %>
|
|
<%= f.input :date_of_birth, start_year: Date.today.year - 150,
|
|
end_year: Date.today.year %>
|
|
<%= f.input :occupation %>
|
|
<%= f.input :email %>
|
|
<%= f.input :phone_number %>
|
|
<%= f.input :telegram_username %>
|
|
<%= f.input :comment %>
|
|
|
|
<%= f.button :submit %>
|
|
<% end %>
|
|
</div>
|