No Description

index.php 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. require_once 'processes/config.php';
  3. // IF USER IS ALREADY LOGGED IN, REDIRECT TO home.php
  4. // ELSE PROMPT USER TO LOG IN
  5. if(!empty($_SESSION)) {
  6. header('Location: home.php');
  7. exit();
  8. }
  9. include_once 'header.php';
  10. ?>
  11. <!-- START OF index.php -->
  12. <body>
  13. <header id="main-header">
  14. <a id="logo" href=".">
  15. TANIA
  16. <img src="img/pen_800x800.png" alt="tania logo pen" width="25" height="25">
  17. </a>
  18. <div id="account">
  19. <button class="google-button" onclick="window.location='<?php echo $loginURL; ?>'">
  20. <img class="google-button__icon" src="img/google.svg" alt="Google">
  21. <span class="google-button__text">Sign in with Google</span>
  22. </button>
  23. </div>
  24. </header>
  25. <section id="showcase">
  26. <div id="showcase-text">
  27. <div id="showcase-heading">
  28. Momentary Assesment Research Made Simple
  29. </div>
  30. <div id="showcase-link">
  31. <a onclick="window.location='<?php echo $loginURL; ?>'">Get Started</a>
  32. </div>
  33. </div>
  34. </section>
  35. <main id="home-main">
  36. <div id="main-sidebar">
  37. <h3>About</h3>
  38. <ul>
  39. <li><a href="#what-we-do" class="active">What We Do</a></li>
  40. <li><a href="#team">Team</a></li>
  41. <li><a href="#contact">Contact</a></li>
  42. </ul>
  43. </div>
  44. <div class="main-content">
  45. <div id="what-we-do" class="main-content-box show">
  46. <h3>The problem</h3>
  47. <p>Most research on REUs rely on retrospective recollection of experiences often limited by memory and conditioned to recall bias, where information is selectively withheld or revealed.</p>
  48. <h3>Our proposal</h3>
  49. <p>To improve the evaluation strategies of REUs, we propose using Momentary Assessments Research Learning Environments (MARLE), a method used in clinical psychology to repeatedly sample momentary behaviors in real time within the natural environment of an experience or intervention.</p>
  50. <br>
  51. <hr class="login-hr">
  52. <br>
  53. </div>
  54. <div id="team" class="main-content-box">
  55. <h3>We are a team of professors and students</h3>
  56. <div id="team-images">
  57. <img src="img/juan.png" alt="Juan">
  58. <!-- <img src="img/ivonne.png" alt="Ivonne"> -->
  59. <img src="img/CDCC.png" alt="CDCC" style="background-color: #eee; padding: 5px;">
  60. <!-- <img src="./img/victor.jpg" alt="Víctor" style="height: 100px; width: 100px; border-radius: 50%;"> -->
  61. <!-- <img src="./img/hector.jpg" alt="Héctor" style="height: 100px; width: 100px; border-radius: 50%;"> -->
  62. <!-- <img src="./img/tatiana.jpg" alt="Tatiana" style="height: 100px; width: 100px; border-radius: 50%;"> -->
  63. <!-- <img src="./img/coralys.jpg" alt="Coralys" style="height: 100px; width: 100px; border-radius: 50%;"> -->
  64. <!-- <img src="./img/carlos.jpg" alt="Carlos" style="height: 100px; width: 100px; border-radius: 50%;"> -->
  65. </div>
  66. <!-- Dr. Ivonne Vele (Department of Education) -->
  67. <p>This is the result of a collaboration between Dr. Juan Ramírez (Department of Biology), and the CDCC at the University of Puerto Rico, Río Piedras Campus.</p>
  68. <br>
  69. <hr class="login-hr">
  70. <br>
  71. </div>
  72. <div id="contact" class="main-content-box">
  73. <h3>Contact Us</h3>
  74. <p>Care to use TANIA? Or just curious about the project? Whichever may be the case, don't hesitate to contact Dr. Juan Ramírez!</p>
  75. <br>
  76. <div id="contact-info">
  77. <p>17 Ave. Universidad STE 1701 San Juan, PR 00925-2537</p>
  78. <p>787.764.0000 Ext. 88341, 88349 Fax:787.773.1717</p>
  79. <p>juan.ramirez3@upr.edu</p>
  80. </div>
  81. <br>
  82. <hr class="login-hr hidden-xs">
  83. <br>
  84. </div>
  85. <br><br><br>
  86. </div>
  87. </main>
  88. <script src="js/index.js"></script>
  89. <!-- END OF index.php -->
  90. <?php include_once 'footer.php'; ?>