Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. <?php if(mysql_num_rows($Enabled) == 0){?>
  2. <center>
  3. <img src="app/tpl/skins/site/images/404.png"/><br/>
  4. <h2>Staff Applications are currently disabled.</h2>
  5. {hotelname} Hotel have turnt off staff applications for now. We will enable them shortly!
  6. </center>
  7. <?php } else { ?>
  8. <form method="post">
  9. <div class="form-section">
  10. <strong>Username:</strong><br />
  11. <input disabled="disabled" type="text" value="{username}">
  12. </div>
  13.  
  14. <div class="form-section">
  15. <strong>Real Name:</strong><br />
  16. <input type="text" name="real">
  17. </div>
  18.  
  19. <div class="form-section">
  20. <strong>Location:</strong><br />
  21. <input type="text" name="location">
  22. </div>
  23.  
  24. <div class="form-section">
  25. <strong>Age:</strong><br />
  26. <select name="age">
  27. <?php for ($i = 13; $i <= 60; $i++) : ?>
  28. <option value="<?php echo $i; ?>"><?php echo $i; ?></option>
  29. <?php endfor; ?>
  30. </select>
  31. </div>
  32.  
  33. <div class="form-section">
  34. <strong>Why should we hire you?</strong><br />
  35. <textarea name="why" rows="4" cols="29"></textarea>
  36. </div>
  37.  
  38. <div class="form-section">
  39. <strong>How are you different from the rest?</strong><br />
  40. <textarea name="dif" rows="4" cols="40"></textarea>
  41. </div>
  42.  
  43. <div class="form-section">
  44. <strong>Additional Information</strong> - <font color="red">Leave your Skype here</font>
  45. <textarea name="additional" rows="4" cols="40"></textarea>
  46. </div>
  47.  
  48. <div class="form-section">
  49. <input type="checkbox" value="1" name="agree">
  50. <label>I agree to be active on the Twist Hotel.</label>
  51. </div>
  52.  
  53. <div class="form-section">
  54. <input type="submit" class="submit" name="submit" value="Apply">
  55. </div>
  56. </form>
  57. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement