index.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="generator" content="GitLab Pages">
  6. <title>KATRIN remote analysis shift</title>
  7. <link rel="shortcut icon" href="https://ikp-neu-katrin.ikp.kit.edu/routine/pics/KATRINlogo.ico" />
  8. <link rel="stylesheet" href="style.css">
  9. </head>
  10. <body>
  11. <div class="navbar">
  12. <a style="background-color:#1761B2;text-decoration:none"><b>Quick links:</b></a>
  13. <a href="http://adei-katrin.kaas.kit.edu" target="_blank">Adei</a>
  14. <a href="http://katana.npl.washington.edu" target="_blank">katana</a>
  15. <a href="http://katana.npl.washington.edu/~sanshiro/brew/KNM6/ " target="_blank">brew</a>
  16. <a href="https://webtrium.mpp.mpg.de" target="_blank">webtrium</a>
  17. </div>
  18. <center>
  19. <h1>Checklist for remote analysis shifts</h1>
  20. </center>
  21. <hr>
  22. <h2 style="text-align:right">Step 1/3</h2>
  23. <center>
  24. <h3>Please enter your name:</h3>
  25. <table id="table" align="center">
  26. <tr>
  27. <th>Author name:</th>
  28. <th><input type="text" placeholder ="Author" id="author"></th>
  29. </tr>
  30. <tr>
  31. <th>Measurement type:</th>
  32. <th><select name="Measurement type" id="measurement">
  33. <option value="Tritium">Tritium</option>
  34. <option value="Krypton">Krypton</option>
  35. <option value="Other">Other</option>
  36. </select></th>
  37. </tr>
  38. </table>
  39. <br><br>
  40. <button type="submit" onclick="submitName()" id="Next">Next</button>
  41. <script type="text/javascript">
  42. function submitName() {
  43. var author = document.getElementById('author');
  44. if(author.value == ""){
  45. alert("Please provide a name.")
  46. }
  47. else {
  48. localStorage.setItem('author', author.value);
  49. localStorage.setItem('measurement', measurement.value);
  50. window.location.href="Checklist.html";
  51. }
  52. }
  53. </script>
  54. </p>
  55. </center>
  56. </body>
  57. </html>