participantPortal.html 748 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <style>
  2. .box{
  3. width:120px;
  4. height:120px;
  5. }
  6. .gold{ background-color: gold; }
  7. .red{ background-color: red; }
  8. .large{
  9. font-size: 30px;
  10. }
  11. .center{
  12. text-align: center;
  13. }
  14. .stretch{
  15. padding: 50px;
  16. }
  17. </style>
  18. <table cellspacing="2" cellpadding="5" border="0">
  19. <tr><td>Version: </td><td><strong id="version">0.0</strong></td></tr>
  20. </table>
  21. <div id="formDiv">
  22. </div>
  23. <div id="debugDiv" style="display:none">
  24. <h3>Debug notes</h3>
  25. <textarea cols="95" rows="5" id="formStatus">
  26. </textarea>
  27. </div>
  28. <script type "text/javascript">
  29. window.onload=init;
  30. function loadScripts(){
  31. LABKEY.requiresScript(["crfTecant/participantPortal.js"],init);
  32. }
  33. function init(){
  34. console.log('Here participantPortal');
  35. //formPortal.scriptsLoaded();
  36. }
  37. </script>