Guest User

Untitled

a guest
Jun 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. <div class="error">
  2. <%= error_messages_for :applicant, :header_message => "There was a problem saving your information", :message => "" %>
  3. </div>
  4. <% form_for(@applicant, :url => welcome_path,:html => { :class => "default", :autocomplete => 'off' }) do |f| %>
  5. <h2>Welcome</h2>
  6. <p>We need some information to put here as an introduction to the online application that is both encouraging and informative towards the process and what the user can expect.</p>
  7. <p>Are you applying as a Freshman or Transfer student?</p>
  8. <ul>
  9. <li class="section">
  10. <%= f.select(:applying_as, ["Freshman", "Transfer"]) %>
  11. </li>
  12.  
  13. <p>Are you a citizen of the United States of America?</p>
  14. <ul>
  15. <li class="section">
  16. <%= f.select(:united_states_citizen, [["Yes, I am", true],["No, I am not", false]]) %>
  17. </li>
  18.  
  19.  
  20.  
  21. <li class="section">
  22. <label class="desc">International Student Information Collection Area</label>
  23. <p>The following information is required by the University of Tulsa.</p>
  24. <div class="left">
  25. <label class="desc" for="citizenship">Country</label>
  26. <%= f.collection_select(:country_id, @countries, :id, :name, :caption => "Country of Citizenship") %>
  27.  
  28. <label for="citizenship">Country of citizenship</label>
  29. </div>
  30. <div class="right">
  31. <label class="desc" for="pra">PRA Number</label>
  32. <%= f.text_field :permanent_resident_alien_number, :size => '15', :class => "short textfield", :caption => "PRA Number" %>
  33.  
  34. <label for="pra_number">XXXXX-XX-XX-XXX</label>
  35. </div>
  36. </li>
  37.  
  38. <!--<li>
  39. <span>
  40. <label class="desc">School attending or last attended</label>
  41. <input type="text" class="medium textfield" />
  42. <label>Name of school</label>
  43. </span>
  44. </li>-->
  45.  
  46.  
  47. </ul>
  48.  
  49.  
  50.  
  51. <p>Applying to The University of Tulsa</p>
  52. <p>Thank you for your interest in applying to The University of Tulsa. Please read the following information before you complete the application for admission.</p>
  53.  
  54.  
  55. <%= submit_tag 'Begin' %>
  56. <% end %>
Add Comment
Please, Sign In to add comment