Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <link rel="stylesheet" href="style.css" />
  7.  
  8. <style>
  9. #admin_forms {
  10. position: relative;
  11. margin-right: 0em;
  12. }
  13. #main_list {
  14. position: relative;
  15. margin-left: 0em;
  16. }
  17. #main_list.strong {
  18. font-size: 30;
  19. font-weight: bold;
  20. }
  21.  
  22. .testclass {
  23. padding: 2px 4px 2px 4px;
  24. border: 1px solid #660000;
  25. background-color: red;
  26. }
  27.  
  28.  
  29. </style>
  30.  
  31. <title></title>
  32. </head>
  33.  
  34. <body>
  35. <div id="mainmenu">
  36.  
  37. <a href="/">Home</a>
  38. <a href="/admin/">Administration</a>
  39. <a href="/list/">Lists</a>
  40.  
  41. </div>
  42.  
  43. <div id="content">
  44.  
  45.  
  46. <div id="main_list">
  47. <strong> Available Locations</strong>
  48. <table>
  49.  
  50. <tr>
  51. Waller 102
  52.  
  53. </tr>
  54.  
  55. <tr>
  56. Ford Goudy
  57.  
  58. </tr>
  59.  
  60. </table>
  61. </div>
  62.  
  63. <div id="admin_forms">
  64. <table class="testclass">
  65.  
  66.  
  67. <tr>
  68. <form action="" method="post" id=AddLocationForm>
  69. <p><label for="id_building">Building:</label> <select name="building" id="id_building">
  70. <option value="" selected="selected">---------</option>
  71. <option value="Ford">Ford</option>
  72. <option value="Waller">Waller</option>
  73. </select></p>
  74. <p><label for="id_room">Room:</label> <select name="room" id="id_room">
  75. <option value="" selected="selected">---------</option>
  76. <option value="Goudy">Ford Goudy</option>
  77. <option value="102">Waller 102</option>
  78. </select></p>
  79. <p><label for="id_room_other">Room other:</label> <input id="id_room_other" type="text" name="room_other" maxlength="70" /></p>
  80. <button type="submit" name=AddLocationForm_submit> Submit </button>
  81. </form>
  82. </tr>
  83.  
  84. <tr>
  85. <form action="" method="post" id=AddBuildingForm>
  86. <p><label for="id_name">Name:</label> <input id="id_name" type="text" name="name" maxlength="70" /></p>
  87. <button type="submit" name=AddBuildingForm_submit> Submit </button>
  88. </form>
  89. </tr>
  90.  
  91. <tr>
  92. <form action="" method="post" id=AddLocationsFromFileForm>
  93. <p><label for="id_file">File:</label> <input type="file" name="file" id="id_file" /></p>
  94. <button type="submit" name=AddLocationsFromFileForm_submit> Submit </button>
  95. </form>
  96. </tr>
  97.  
  98.  
  99. </table>
  100. </div>
  101.  
  102.  
  103. </div>
  104. </body>
  105. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement