index.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 href="http://adei-katrin.kaas.kit.edu" target="_blank">Adei</a>
  13. <a href="http://katana.npl.washington.edu" target="_blank">katana</a>
  14. <a href="https://gitlab.com/pages/" target="_blank">brew</a>
  15. <a href="https://webtrium.mpp.mpg.de" target="_blank">webtrium</a>
  16. </div>
  17. <center>
  18. <h1>Checklist for remote analysis shifts</h1>
  19. </center>
  20. <hr>
  21. <h2 style="text-align:right">Step 1/3</h2>
  22. <center>
  23. <h3>Please enter your name:</h3>
  24. <p>
  25. <input type="text" placeholder ="Author" id="author">
  26. <br><br>
  27. <button type="submit" onclick="myfunc()" id="demo">Next</button>
  28. <script type="text/javascript">
  29. function myfunc() {
  30. var author = document.getElementById('author');
  31. if(author.value == ""){
  32. alert("Please provide a name.")
  33. }
  34. else {
  35. localStorage.setItem('author', author.value);
  36. window.location.href="Checklist.html";
  37. }
  38. }
  39. </script>
  40. </p>
  41. </center>
  42. </body>
  43. </html>