Package updates. More updates for LCI.

This commit is contained in:
Scott Idem
2025-06-20 10:59:04 -04:00
parent 94ccbd5f96
commit 93ffb8c3ad
6 changed files with 663 additions and 649 deletions

View File

@@ -155,11 +155,12 @@ async function handle_submit_form(event) {
<p class="text-lg bg-yellow-100 p-2">
<strong>{$lq__event_session_obj.poc_person_full_name} ({$lq__event_session_obj.poc_person_primary_email})</strong> agrees to the following terms and conditions for the presentation:
</p>
<h3 class="h4">Title: "{$lq__event_session_obj?.name}"</h3>
<h3 class="h4 text-center">
<span class="text-base">Session:</span> "{$lq__event_session_obj?.name}"
</h3>
<div>
<h3 class="h4">Opt-Out?</h3>
<div class="w-full">
<h3 class="h4 text-center">Opt-Out?</h3>
<form
class="modal-form {$ae_loc.hub.classes__form}"
on:submit|preventDefault={handle_submit_form}
@@ -260,9 +261,28 @@ async function handle_submit_form(event) {
</div>
</form>
</div>
<div class="text-center w-full">
<h3 class="h4">Agree?</h3>
<!-- Agree (agreement) means this presenter has agreed to the terms and conditions. -->
{#if !$lq__event_session_obj?.poc_agree}
<div>
Not Agreed:
<span class="fas fa-times text-red-500 m-1"></span>
<!-- <span class="fas fa-question text-red-500 m-1"></span> -->
</div>
<div>
Waiting for agreement to the POC Consent and Release and Terms and Conditions before you can move on.
</div>
{:else}
<div>
Agreed:
<span class="fas fa-check text-green-500 m-1"></span>
Marked as agreed
</div>
{/if}
{#if !$lq__event_session_obj?.poc_agree}
<button
disabled={!$ae_loc.administrator_access &&

View File

@@ -566,7 +566,6 @@ let clipboard_success = $state(false);
/>
{#snippet footer()}
<div class="text-center w-full">
<button
@@ -579,7 +578,6 @@ let clipboard_success = $state(false);
Close
</button>
</div>
{/snippet}
</Modal>