1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/membership_applications/new.html.erb

17 lines
505 B
Text
Raw Normal View History

2018-11-26 09:12:49 -05:00
<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 %>
2018-11-28 08:11:39 -05:00
<%= f.input :comment %>
2018-11-26 09:12:49 -05:00
<%= f.button :submit %>
<% end %>
</div>