schedule-response-error.php 637 B

123456789101112131415
  1. <?php
  2. // SPDX-FileCopyrightText: 2018 Georg Ehrke <oc.list@georgehrke.com>
  3. // SPDX-FileCopyrightText: 2020 Christoph Wurst <christoph@winzerhof-wurst.at>
  4. // SPDX-FileCopyrightText: 2022 Carl Schwan <carl@carlschwan.eu>
  5. // SPDX-License-Identifier: AGPL-3.0-or-later
  6. ?>
  7. <div class="guest-box">
  8. <div class="notecard error">
  9. <p><?php p($l->t('There was an error updating your attendance status.'));?></p>
  10. <p><?php p($l->t('Please contact the organizer directly.'));?></p>
  11. <?php if (isset($_['organizer'])): ?>
  12. <p><a href="<?php p($_['organizer']) ?>"><?php p(substr($_['organizer'], 7)) ?></a></p>
  13. <?php endif; ?>
  14. </div>
  15. </div>