schedule-response-error.php 507 B

12345678910111213141516
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  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>