completedPortal.html 921 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. table.t2 {width:800px; border:1px solid black;}
  18. table.t2 th {border:1px solid black;padding:4px;background-color:#e0e0e0}
  19. table.t2 td {border:1px solid black; text-align:center}
  20. </style>
  21. <table cellspacing="2" cellpadding="5" border="0">
  22. <tr><td>Version: </td><td><strong id="version">0.0</strong></td></tr>
  23. </table>
  24. <div id="formDiv">
  25. </div>
  26. <div id="debugDiv" style="display:block">
  27. <h3>Debug notes</h3>
  28. <textarea cols="95" rows="5" id="formStatus">
  29. </textarea>
  30. </div>
  31. <script type "text/javascript">
  32. window.onload=init;
  33. function init(){
  34. config.document=document;
  35. config.role="crfManager";
  36. config.div="formDiv";
  37. config.debugArea="formStatus";
  38. clear();
  39. print("XStarting");
  40. generateFormArray();
  41. }
  42. </script>