You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

schedule-response-options.php 1.1KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. style('dav', 'schedule-response');
  3. ?>
  4. <div class="update">
  5. <form action="" method="post">
  6. <fieldset id="partStat">
  7. <h2><?php p($l->t('Are you accepting the invitation?')); ?></h2>
  8. <div id="selectPartStatForm">
  9. <input type="radio" id="partStatAccept" name="partStat" value="ACCEPTED" checked />
  10. <label for="partStatAccept">
  11. <span><?php p($l->t('Accept')); ?></span>
  12. </label>
  13. <input type="radio" id="partStatTentative" name="partStat" value="TENTATIVE" />
  14. <label for="partStatTentative">
  15. <span><?php p($l->t('Tentative')); ?></span>
  16. </label>
  17. <input type="radio" class="declined" id="partStatDeclined" name="partStat" value="DECLINED" />
  18. <label for="partStatDeclined">
  19. <span><?php p($l->t('Decline')); ?></span>
  20. </label>
  21. </div>
  22. </fieldset>
  23. <fieldset id="more_options">
  24. <input type="number" min="0" name="guests" placeholder="Guests" />
  25. <input type="text" name="comment" placeholder="Comment" />
  26. </fieldset>
  27. <fieldset>
  28. <input type="submit" value="<?php p($l->t('Save'));?>">
  29. </fieldset>
  30. </form>
  31. </div>