1
0

schedule-response-options.php 1.0 KB

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