Sha256: dfa1ec9345d6ee16e46b249a0bb178d34a85ec3dfd1a44e2c980b08255617192
Contents?: true
Size: 1.3 KB
Versions: 12
Compression:
Stored size: 1.3 KB
Contents
<% page_dom = "submit_page" next_js = load_page_js(@next_page) -%> <div id="<%= page_dom %>" class="answer-page"> <!-- this id is parsed by public.js --> <h2>Submit Application</h2> <div id="page-preview"> <div class="page"> <%= form_tag fe_application_submit_page_path(@application), id: "#{page_dom}-form", autocomplete: "off", onsubmit: "page_handler.validateAll(); return false;" do -%> <div id="submit_app"> <% if @application.frozen? -%> <p><%= _("You have already submitted this application.") %></p> <% else -%> <p><%= _("If you are sure you are finished with the application, click \"Submit Application\". " \ "After you submit your application, you will not be able to edit your answers in your " \ "application, but you will be able to change your your personal information, your " \ "school information, and your reference information as necessary.") %></p> <div id="application_errors"> <%= render partial: "errors"%> </div> <%= hidden_field_tag "submit_to", submit_fe_application_submit_page_path(@application) %> <div id="submit_message" class="validation-advice" style="display: none;"></div> <p class="buttons"><%= submit_tag(_("Submit Application")) %></p> <% end -%> </div> <% end -%> </div> </div> </div>
Version data entries
12 entries across 12 versions & 1 rubygems