1
0
mirror of https://github.com/fspc/Yellow-Bike-Database.git synced 2025-02-21 08:34:27 -05:00

This adds WAIVER_LABEL so that it can be user defined.

The button changes to "Show Complete Text".
This commit is contained in:
Jonathan Rosenbaum 2016-03-26 05:37:52 +00:00
parent f783891e95
commit 8ed593e4d5

View File

@ -10,6 +10,7 @@ $handler->start();*/
$waiver = WAIVER;
$waiver_label = WAIVER_LABEL;
$email_list = EMAIL_LIST;
$volunteer_interest_form = VOLUNTEER_INTEREST_FORM;
$volunteer_interest_form_name = VOLUNTEER_INTEREST_FORM_NAME;
@ -332,14 +333,14 @@ $totalRows_Recordset1 = mysql_num_rows($Recordset1);
</tr>
<?php if($waiver) { ?>
<tr>
<td><label class="contacts">Waiver of Liability:</label></td>
<td><label class="contacts"><?php echo $waiver_label; ?></label></td>
<td> <div id="waiver">
<p>
<?php include("Connections/waiver.txt"); ?>
<br />
</p>
</div><input id="waiver_checkbox" name="waiver_checkbox" type="checkbox"> I agree <span id="waiver_error"></span>
<input type="submit" id="waiver_button" value="Show Waiver" \>
<input type="submit" id="waiver_button" value="Show Complete Text" \>
</td>
</tr>