nextcloud/apps/dav/templates/schedule-response-options.php
François Freitag 3f8fe4f35e Remove unused apps/dav/js/schedule-response.js
File is not included in the schedule-response-options template and is
commented out. The commented code relies on the buttonset() jQuery
plugin, which is deprecated.
https://api.jqueryui.com/buttonset/

If this code was to be re-introduced, it would take a different form.

Signed-off-by: François Freitag <mail@franek.fr>
2021-05-15 10:57:50 +02:00

34 lines
1.1 KiB
PHP

<?php
style('dav', 'schedule-response');
?>
<div class="update">
<form action="" method="post">
<fieldset id="partStat">
<h2><?php p($l->t('Are you accepting the invitation?')); ?></h2>
<div id="selectPartStatForm">
<input type="radio" id="partStatAccept" name="partStat" value="ACCEPTED" checked />
<label for="partStatAccept">
<span><?php p($l->t('Accept')); ?></span>
</label>
<input type="radio" id="partStatTentative" name="partStat" value="TENTATIVE" />
<label for="partStatTentative">
<span><?php p($l->t('Tentative')); ?></span>
</label>
<input type="radio" class="declined" id="partStatDeclined" name="partStat" value="DECLINED" />
<label for="partStatDeclined">
<span><?php p($l->t('Decline')); ?></span>
</label>
</div>
</fieldset>
<fieldset id="more_options">
<input type="number" min="0" name="guests" placeholder="Guests" />
<input type="text" name="comment" placeholder="Comment" />
</fieldset>
<fieldset>
<input type="submit" value="<?php p($l->t('Save'));?>">
</fieldset>
</form>
</div>