Advertisement
Guest User

Untitled

a guest
May 27th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="nl">
  3. <head>
  4. <title>PXL Ticketing</title>
  5. <script src="<?php echo get_js_asset_url('jquery-2.2.3.min.js'); ?>"></script>
  6. <script src="<?php echo get_js_asset_url('bootstrap.js'); ?>"></script>
  7. <link href="<?php echo get_css_asset_url('bootstrap.css'); ?>" rel="stylesheet"/>
  8. <link href="<?php echo get_css_asset_url('bootstrap-responsive.css'); ?>" rel="stylesheet"/>
  9. <script src="<?php echo get_js_asset_url('functions.js'); ?>"></script>
  10. <script type="text/javascript">
  11. function annuleren() {
  12.  
  13. window.open('<?php echo base_url('overview'); ?>');
  14. }
  15. </script>
  16. </head>
  17. <body>
  18. <div class="modal-dialog">
  19. <div class="modal-content">
  20. <div class="modal-header">
  21. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  22. <h4 class="modal-title">Ticket bijwerken</h4>
  23. </div>
  24. <div class="modal-body">
  25. <form class="form-horizontal">
  26. <fieldset>
  27. <div class="form-group">
  28. <label for="inputTitle" class="col-lg-2 control-label">Titel</label>
  29. <div class="col-lg-10">
  30. <input class="form-control" id="inputTitle" placeholder="Titel" type="text">
  31. </div>
  32. </div>
  33. <div class="form-group">
  34. <label for="inputLocation" class="col-lg-2 control-label">Locatie</label>
  35. <div class="col-lg-10">
  36. <input class="form-control" id="inputLocation" placeholder="Locatie: vb: EB046" type="text">
  37. </div>
  38. </div>
  39. <div class="form-group">
  40. <label for="inputPriority" class="col-lg-2 control-label">Status</label>
  41. <div class="col-lg-10">
  42. <select name="priority" id="inputPriority" class="form-control">
  43. <option value="1">Open</option>
  44. <option value="2">Parked</option>
  45. <option value="3">Started</option>
  46. <option value="4">Closed</option>
  47. </select>
  48. <span class="help-block">Bepaal de huidige status</span>
  49. </div>
  50. </div>
  51. <div class="form-group">
  52. <label for="inputDescription" class="col-lg-2 control-label">Omschrijving</label>
  53. <div class="col-lg-10">
  54. <textarea class="form-control" rows="3" id="inputDescription"></textarea>
  55. <span class="help-block">Omschrijf zo goed mogelijk het probleem, vermeld ook wat u al geprobeerd heeft.</span>
  56. </div>
  57. </div>
  58. <div class="form-group">
  59. <label for="inputPriority" class="col-lg-2 control-label">Prioriteit</label>
  60. <div class="col-lg-10">
  61. <select name="priority" id="inputPriority" class="form-control">
  62. <option value="1">1</option>
  63. <option value="2">2</option>
  64. <option value="3">3</option>
  65. <option value="4">4</option>
  66. <option value="5">5</option>
  67. </select>
  68. <span class="help-block">Vermeld de prioriteit op een schaal tussen 1 en 5</span>
  69. </div>
  70. </div>
  71. </fieldset>
  72. </form>
  73. </div>
  74. <div class="modal-footer">
  75. <button type="button" class="btn btn-default" data-dismiss="modal">Annuleren</button>
  76. <button type="button" class="btn btn-success" id="createTicket">Ticket bijwerken</button>
  77. </div>
  78. </div>
  79. </div>
  80. </body>
  81. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement