schedule-response-options.php 1.1 KB

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