Update consent checkbox text (fixes #21)

master
Skylar Ittner 4 years ago
parent 6fef95f630
commit 08fd04dae5

@ -369,7 +369,7 @@ if (isset($_SESSION['familyid']) && $database->has('families', ['familyid' => $_
<div class="form-check">
<input class="form-check-input" type="checkbox" value="1" name="agree_terms" id="agree_terms" required>
<label class="form-check-label" for="agree_terms">
I/We have read and understand this application and agree to abide by HACHEs policy of common courtesy and respect for one another.
I/We home school our <span id="child_ren">child</span> and have read and understand this application. We also agree to abide by HACHEs policy of common courtesy and respect for one another.
</label>
</div>

@ -8,6 +8,7 @@
$("#add_child_row").click(function () {
$.get("parts/template_child_entry.php", {}, function (resp) {
$("#child_list").append(resp);
$("#child_ren").text("children");
});
});

Loading…
Cancel
Save