Advertisement
Guest User

Untitled

a guest
Feb 9th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. <table style="width:60%">
  2. <tr>
  3. <td>
  4. <form action="#" method="post" name="job_application" id="job_form">
  5. <fieldset>
  6. <legend><h3>Personal Information</h3></legend>
  7. <label for="fullname">Full Name:</label>
  8. <input type="text" id="name_field" name="name"><br>
  9.  
  10. <label for="address">Home Address:</label>
  11. <input type="text" id="address_field" name="address"><br>
  12.  
  13. <label for="phone">Phone Number:</label>
  14. <input type="text" id="phone_field" name="phone">
  15. <br>
  16. <br>
  17.  
  18. <b> Account Details: </b><br>
  19. <label for="email-address">Email Address:</label>
  20. <input type="text" id="email_field" name="email"><br>
  21.  
  22. <label for="password">Password:</label>
  23. <input type="password" id="password_field" name="password"><br>
  24. <br>
  25. <br>
  26.  
  27. <b> Gender: </b><br>
  28. <input type="radio" name="gender" value="male" checked> Male<br>
  29. <input type="radio" name="gender" value="female"> Female<br>
  30. <input type="radio" name="gender" value="other"> Not Disclose<br>
  31. </fieldset>
  32. <br>
  33.  
  34. <fieldset>
  35. <legend><h3>Department Interest</h3></legend>
  36.  
  37. <b>State</b>
  38. <select>
  39. <option value="New Jersey" selected>New Jersey</option>
  40. <option value="New York">New York</option>
  41. <option value="Texas">Texas</option>
  42. <option value="California">California</option>
  43. </select>
  44. <br>
  45. <br>
  46.  
  47. <input type="checkbox" name="departmentAcc" value="Accounting" checked>Accounting
  48. <br>
  49. <input type="checkbox" name="departmentHR" value="HR">Human Resources
  50. <br>
  51. <input type="checkbox" name="departmentComp" value="Compliance">Compliance
  52. <br>
  53. <input type="checkbox" name="departmentIT" value="IT">Information Tech
  54. <br>
  55. </fieldset><br>
  56.  
  57. <fieldset>
  58. <legend><h3>Create Account</h3></legend>
  59. <input type="submit" id="submit" name="submit" value="Submit">
  60. </fieldset>
  61.  
  62. </form>
  63. </td>
  64. <td>
  65. <div>
  66. <textarea rows="15" id="output_value" cols="40"></textarea>
  67. </div>
  68. </td>
  69. <tr>
  70. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement