index.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <html>
  2. <head>
  3. <title>WGTS Status Overview</title>
  4. <style type="text/css">
  5. body { font-family:Calibri,Arial; }
  6. a:link { text-decoration:none; }
  7. a:visited { text-decoration:none; }
  8. a:hover { text-decoration:none; }
  9. a:active { text-decoration:none; }
  10. a:focus { text-decoration:none; }
  11. </style>
  12. <meta http-equiv="refresh" content="60">
  13. </head>
  14. <body>
  15. <?php
  16. // ########## TITLE and DATE ##########
  17. echo '<font size="6" color="#000000"><b>WGTS Status Overview</b></font><br>';
  18. echo '<font size="4" color="#000000">' . date(DATE_RFC822) . '</font><br>';
  19. ?>
  20. <!-- WGTS picture (center) -->
  21. <div style="position:absolute; top:0px; left:0px">
  22. <img src="pictures/WGTS-Schema-clear-Currents.png">
  23. <!-- KATRIN logo (upper left) -->
  24. <a href="http://katrin.kit.edu" target="_blank">
  25. <div style="position:absolute; top:15px; left:320px">
  26. <img src="../pictures/katrin_logo.jpg" width="100" height="100">
  27. </div>
  28. <!-- email link (upper left)-->
  29. <a href="mailto:Florian.Heizmann@kit.edu">
  30. <div title="send email to Florian Heizmann" style="position:absolute; top:80px; left:8px">
  31. <img src="../pictures/newEmail.png" width="23" height="23">
  32. </div>
  33. </a>
  34. <!-- fill the ADEI values -->
  35. <?php
  36. include "wgts_main.php";
  37. ?>
  38. <!-- temperature profile -->
  39. <div name="source temperature profile" style="position:absolute; top:650px; left:470px">
  40. <img src="<?php
  41. require_once('/var/www/stsstatus/phplot.php');
  42. include('plotTempProfile.php');
  43. echo $plot->EncodeImage();
  44. ?>" alt="Plot Image">
  45. </div>
  46. </div>
  47. </body>
  48. </html>