Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 61a57c54 authored by AVINASH GUSAIN's avatar AVINASH GUSAIN
Browse files

template files for invitation click

parent c10a16ea
Loading
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
<div class="update">
	<p class="message"><?php p($l->t('There was an error updating your attendance status.'));?></p>
	<p class="message"><?php p($l->t('Please contact the organizer directly.'));?></p>
	<?php if (isset($_['organizer'])): ?>
		<p class="message"><a href="<?php p($_['organizer']) ?>"><?php p(substr($_['organizer'], 7)) ?></a></p>
	<?php endif; ?>
</div>
+34 −0
Original line number Diff line number Diff line
<?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="<?php p($l->t('Number of guests')); ?>" />
			<input type="text" name="comment" placeholder="<?php p($l->t('Comment')); ?>" />
		</fieldset>
		<fieldset>
			<input type="submit" value="<?php p($l->t('Save'));?>">
		</fieldset>
	</form>
</div>
+4 −0
Original line number Diff line number Diff line
<div class="update" style="justify-content: space-around; display: flex;">
	<span class="icon icon-checkmark-white"></span>
	<p class="message"><?php p($l->t('Your attendance was updated successfully.'));?></p>
</div>