From c17447ed70f33c4090b67acb55dede191a18dff3 Mon Sep 17 00:00:00 2001 From: james Date: Thu, 2 Dec 2004 19:03:53 +0000 Subject: [PATCH] registration summary table summarytable css class --- common.inc.php | 1 + register_participants_main.php | 46 +++++++++++++++++++++++++++++++--- sfiab.css | 29 +++++++++++++++++++++ 3 files changed, 72 insertions(+), 4 deletions(-) diff --git a/common.inc.php b/common.inc.php index b573fb5..cc2a52c 100644 --- a/common.inc.php +++ b/common.inc.php @@ -139,6 +139,7 @@ function send_header($title="") if($HEADER_SENT) return; else $HEADER_SENT=true; + echo "\n"; ?> diff --git a/register_participants_main.php b/register_participants_main.php index ab93f89..63de80a 100644 --- a/register_participants_main.php +++ b/register_participants_main.php @@ -30,10 +30,48 @@ echo mysql_error(); } $r=mysql_fetch_object($q); - send_header("Participant Registration"); - echo "Welcome back $r->name"; - echo "

"; - print_r($r); + send_header("Participant Registration Summary"); + + echo i18n("Hello %1",array($r->name)); + echo "
"; + echo "
"; + echo i18n("Please use the checklist below to complete your registration. Click on an item in the table to edit that information. When you have entered all information, the Status field will change to Complete"); + echo "
"; + echo "
"; + + echo ""; + echo ""; + +//participant information +echo ""; + +//project information +echo ""; + +//safety information +echo ""; + +//signature page +echo ""; + +//received information +echo ""; + + + echo "
".i18n("Registration Item")."".i18n("Status")."
".i18n("Student Information").""; +//check to see if its complete +echo "
".i18n("Project Information").""; +//check to see if its complete +echo "
".i18n("Safety Information").""; +//check to see if its complete +echo "
".i18n("Signature Page").""; +//check to see if its complete +echo "
".i18n("Signature Page Received").""; +//check to see if its complete +echo "
"; + + + echo "

"; send_footer(); diff --git a/sfiab.css b/sfiab.css index df19fc6..6f316dd 100644 --- a/sfiab.css +++ b/sfiab.css @@ -86,3 +86,32 @@ a { font-size: 11px; color: #5C6F90; } + +.summarytable { + border-collapse: collapse; + border-spacing: 0px; + border: 2px solid black; + margin: 0px; + padding: 0px; + margin-left: 30px; + +} + +.summarytable th { + border: 2px solid black; + background-color: #5C6F90; + padding: 5px; + margin: 0px; + font-size: 12px; + color: white; + font-weight: bold; + + +} + +.summarytable td { + border: 2px solid black; + margin: 0px; + padding: 4px; + +}