schedule-response-options.php 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // SPDX-FileCopyrightText: 2018 Georg Ehrke <oc.list@georgehrke.com>
  3. // SPDX-License-Identifier: AGPL-3.0-or-later
  4. \OCP\Util::addStyle('dav', 'schedule-response');
  5. ?>
  6. <div class="guest-box">
  7. <form action="" method="post">
  8. <fieldset id="partStat">
  9. <h2><?php p($l->t('Are you accepting the invitation?')); ?></h2>
  10. <div id="selectPartStatForm">
  11. <input type="radio" id="partStatAccept" name="partStat" value="ACCEPTED" checked />
  12. <label for="partStatAccept">
  13. <span><?php p($l->t('Accept')); ?></span>
  14. </label>
  15. <input type="radio" id="partStatTentative" name="partStat" value="TENTATIVE" />
  16. <label for="partStatTentative">
  17. <span><?php p($l->t('Tentative')); ?></span>
  18. </label>
  19. <input type="radio" class="declined" id="partStatDeclined" name="partStat" value="DECLINED" />
  20. <label for="partStatDeclined">
  21. <span><?php p($l->t('Decline')); ?></span>
  22. </label>
  23. </div>
  24. </fieldset>
  25. <fieldset>
  26. <input type="submit" value="<?php p($l->t('Save'));?>">
  27. </fieldset>
  28. </form>
  29. </div>