Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title> Web page </title>
  5. <link rel="stylesheet" type="text/css" href="style.css">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7.  
  8. </head>
  9. <body>
  10. <!-- Tab links -->
  11. <div class="tab">
  12. <button class="tablink" onclick="openPage('Administration', this)" id="defaultOpen"> Administration </button>
  13. <button class="tablink" onclick="openPage('Formular', this)"> Formular </button>
  14. </div>
  15.  
  16. <!-- Tab content -->
  17. <div id = "Administration" class = "tabcontent">
  18. <form id="searchForm" action = "JavaScript:searchFormular(formularName.value)"> Formular name:
  19. <input id = "formularName" value = "" required>
  20. <input type = "submit" value = "Search">
  21. </form>
  22.  
  23. <!-- <button id="saveButton" onclick="saveFormular(this)" style="display: none;"> Save </button> -->
  24. </div>
  25.  
  26. <div id="Formular" class="tabcontent">
  27. <form id = "choseForm" action = "JavaScript:loadFormular(choseFormular.value,formularVersion.value)"> Formular name:
  28. <select id = "choseFormular" style = "background-color: #1231" required>
  29. <option value = "Some existing formular"> Some existing formular </option>
  30. </select> Version
  31. <input id = "formularVersion" type = "number" value = "" min = "1" style = "width:50px" requred>
  32. <input type = "submit" value = "Load">
  33. </form>
  34. </div>
  35.  
  36. <div id = "welcomePage">
  37. <h1> Welcome! </h1>
  38. </div>
  39. <script src="database.js"> </script>
  40.  
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement