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

public.php « templates - github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9979ace54b3366c5dd7ebd6a1c017e0064bd23bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div id="notification-container">
	<div id="notification" style="display: none;"></div>
</div>
<div id="documents-content">
	<?php if (isset($_['document'])): ?>
		<form>
			<input type="text" name="memberName" placeholder="<?php p($l->t('Introduce yourself')) ?>" />
			<button id="odf-join"><?php p($l->t('Join')) ?></button>
		</form>
		<input type="hidden" name="document" value ="<?php p($_['document']) ?>" />
	<?php endif; ?>
	<?php if (isset($_['notFound'])): ?>
		<div class="push"></div>
		<div class="warning"><?php p($l->t('This link has been expired or is never existed. Please contact the person who shared it with you for details.')) ?></div>
	<?php endif; ?>
</div>