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

personal_settings.php « templates - github.com/pierre-alain-b/rainloop-nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 189d8bec3373e7bda9e22057b8424ba577859638 (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
<?php script('rainloop', 'personal');

$textLink1 = $l->t('may have some');
$textLink2 = $l->t('security considerations');
$links = [
	"<a href=\"https://github.com/pierre-alain-b/rainloop-nextcloud/issues/87\" style=\"text-decoration:underline\" target=\"_blank\">{$textLink1}</a>",
	"<a href=\"https://github.com/RainLoop/rainloop-webmail/issues/1082\" style=\"text-decoration:underline\" target=\"_blank\">{$textLink2}</a>"
	]; ?>

<div class="section">
	<form id="mail-rainloop-personal-form" action="#" method="post">
		<input type="hidden" name="requesttoken" value="<?php echo $_['requesttoken'] ?>" id="requesttoken">
		<input type="hidden" name="appname" value="rainloop">

		<fieldset class="personalblock">
			<h2><?php echo($l->t('RainLoop Webmail')); ?></h2>
			<p>
				<?php echo($l->t('Enter an email and password to auto-login to RainLoop. <b>Please note</b> that this feature %s %s.', $links)); ?>
			</p>
			<p>
				<input type="text" id="rainloop-email" name="rainloop-email"
					value="<?php echo $_['rainloop-email']; ?>" placeholder="<?php echo($l->t('Email')); ?>" />

				<input type="password" id="rainloop-password" name="rainloop-password"
					value="<?php echo $_['rainloop-password']; ?>" placeholder="<?php echo($l->t('Password')); ?>" />

				<input type="button" id="rainloop-save-button" name="rainloop-save-button" value="<?php echo($l->t('Save')); ?>" />
				&nbsp;&nbsp;<span class="rainloop-result-desc"></span>
			</p>
		</fieldset>
	</form>
</div>