Guest User

Untitled

a guest
Apr 9th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.98 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <title>Coders Unleashed: Apply</title>
  4. <link href="css/main.css" rel="stylesheet">
  5. <link href="https://fonts.googleapis.com/css?family=Manuale|Montserrat" rel="stylesheet">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <script src="https://code.jquery.com/jquery-3.1.1.js"></script>
  8. </head>
  9. <body>
  10. <nav>
  11. <a href="index.html" class="strong">Coders Unleashed</a><a href="apply.html">Apply Online Now</a><a href="login.html">Login</a>
  12. </nav>
  13. <main>
  14. <h1 class="sf">Application Form</h1>
  15. <div class="div_m">
  16. <h3>Personal Information</h3>
  17. <div><label>First Name: </label> <input type="text" name="firstname" id="firstname" /></div>
  18. <div><label>Last Name: </label> <input type="text" name="lastname" id="lastname" /></div>
  19. <div><label>Email: </label> <input type="email" name="email" id="email" /></div>
  20. <div><label>Phone: </label> <input type="tel" name="phone" id="phone" /></div>
  21. <div><label>Program: </label> <select name="program" id="program"><option>Choose a Program</option></select></div>
  22. <div class="btm20"><a href="#" class="a_next">Next Step</a></div>
  23. </div>
  24. <div class="div_m">
  25. <h3>Address</h3>
  26. <div><label>Street: </label> <input type="text" name="street" id="street" /></div>
  27. <div><label>House: </label> <input type="text" name="house" id="house" /></div>
  28. <div><label>City: </label> <input type="text" name="city" id="city" /></div>
  29. <div><label>State: </label> <select name="state" id="state"><option>Choose a State</select></div>
  30. <div><label>Zip Code: </label> <input type="number" name="zip" id="zip" /></div>
  31. <div class="btm20"><a href="#" class="a_previous">Previous Step</a> <a href="#" class="a_next">Next Step</a></div>
  32. </div>
  33. <div class="div_m">
  34. <h3>Fees</h3>
  35. <div><label>Application: </label> <input type="checkbox" name="fee_app" id="fee_app" value="100" /></div>
  36. <div><label>Housing: </label> <input type="checkbox" name="fee_house" id="fee_house" value="2500" /></div>
  37. <div><label>Transcript Evaluation: </label> <input type="checkbox" name="fee_trans" id="fee_trans" value="250" /></div>
  38. <div><label>Tuition Fees Insurance: </label> <input type="checkbox" name="fee_ins" id="fee_ins" value="50" /></div>
  39. <div class="btm20"><a href="#" class="a_previous">Previous Step</a> <a href="#" class="a_next">Next Step</a></div>
  40. </div>
  41. <div class="div_m">
  42. <h3>Billing Address</h3>
  43. <div><label><input type="checkbox" name="sameasaddress" id="sameasaddress" /> Same as Address Above</label></div>
  44. <div><label>Street: </label> <input type="text" name="b_street" id="b_street" /></div>
  45. <div><label>House: </label> <input type="text" name="b_house" id="b_house" /></div>
  46. <div><label>City: </label> <input type="text" name="b_city" id="b_city" /></div>
  47. <div><label>State: </label> <select name="b_state" id="b_state"><option>Choose a State</select></div>
  48. <div><label>Zip Code: </label> <input type="number" name="b_zip" id="b_zip" /></div>
  49. <div class="btm20"><a href="#" class="a_previous">Previous Step</a> <a href="#" class="a_next">Next Step</a></div>
  50. </div>
  51. <div class="div_m">
  52. <h3>Payment Information</h3>
  53. <div><a href="#" class="paylink">Pay with PayPal</a> <a href="#" class="paylink">Pay with Credit or Debit Card</a></div>
  54. <div id="div_paypal">
  55. image of paypal website as link
  56. </div>
  57. <div id="div_creditpay">
  58. <div><label>Card Number: </label> <input type="number" name="cc_number" id="cc_number" /></div>
  59. <div>
  60. <label>Expiration Date: </label>
  61. <select name="cc_expm" id="cc_expm"><option>Choose Month</option></select>
  62. <select name="cc_expy" id="cc_expy"><option>Choose Year</option></select>
  63. </div>
  64. <div><label>CCV Code: </label> <input type="number" name="cc_ccv" id="cc_ccv" /></div>
  65. </div>
  66. <div class="btm20"><a href="#" class="a_previous">Previous Step</a> <a href="#" class="a_next">Next Step</a></div>
  67. </div>
  68. <div class="div_m">
  69. <h3>Confirm and Submit</h3>
  70. <div><label>Your IP Address: </label> <input type="text" name="ipaddress" id="ipaddress" /></div>
  71. <div><label>Date and Time: </label> <span id="dant"></span></div>
  72. <div>
  73. <label>Confirm everything is accurate? </label>
  74. <input type="radio" name="confirmed" value="0" /> No
  75. <input type="radio" name="confirmed" value="1" /> Yes
  76. </div>
  77. <div class="btm20"><a href="#" class="a_previous">Previous Step</a> <a href="#" class="a_next">Submit My Application</a></div>
  78. </div>
  79. </main>
  80. <footer>
  81. <small>Coders Unleashed &copy; 2019 All Rights Reserved. A Project of the Web Dev Students @ Platt College.</small>
  82. </footer>
  83. <script src="js/main.js"></script>
  84. </body>
  85. </html>
Add Comment
Please, Sign In to add comment