Welcome to mirror list, hosted at ThFree Co, Russian Federation.

schedule-response-options.php « templates « dav « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da95454e4f546adb522ad657123c4b818cb1e310 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
style('dav', 'schedule-response');
//script('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>