* Copyright (C) 2005 James Grant * Copyright (C) 2008 David Grant * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ ?> prepare('SELECT * FROM students WHERE registrations_id=?'); $q->execute([$_SESSION['registration_id']]); show_pdo_errors_if_any($pdo); if ($q->rowCount() == 0) { header('Location: register_participants.php'); exit; } while ($s = $q->fetch(PDO::FETCH_OBJ)) { $student[] = array( 'first' => "{$s->firstname}", 'last' => "{$s->lastname}", 'email' => "{$s->email}", 'grade' => "{$s->grade}" ); } // send the header send_header('Participant Registration - Signature Page'); echo '<< ' . i18n('Back to Participant Registration Summary') . '
'; echo '
'; if ($_POST['signed']) { setRegistrationFormsReceived(); } // output the current status $newstatus = registrationFormsReceived($_SESSION['registration_id']); if ($newstatus != 'complete') { echo error(i18n('Signature Page Incomplete. Please complete all forms below')); } else if ($newstatus == 'complete') { echo happy(i18n('Signature Page Complete')); } ?>
data-email= data-values='' style="display: block; max-height: 100vh; overflow: auto;"