mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 13:39:22 +03:00
29 lines
1.4 KiB
PHP
Executable file
29 lines
1.4 KiB
PHP
Executable file
<?php
|
|
$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 class="snappymail" action="personal.php" method="post">
|
|
<input type="hidden" name="requesttoken" value="<?php echo $_['requesttoken'] ?>" id="requesttoken">
|
|
<fieldset class="personalblock">
|
|
<h2><?php echo($l->t('SnappyMail Webmail')); ?></h2>
|
|
<p>
|
|
<?php echo($l->t('Enter an email and password to auto-login to SnappyMail. <b>Please note</b> that this feature %s %s.', $links)); ?>
|
|
</p>
|
|
<p>
|
|
<input type="text" id="snappymail-email" name="snappymail-email"
|
|
value="<?php echo $_['snappymail-email']; ?>" placeholder="<?php echo($l->t('Email')); ?>" />
|
|
|
|
<input type="password" id="snappymail-password" name="snappymail-password"
|
|
value="<?php echo $_['snappymail-password']; ?>" placeholder="<?php echo($l->t('Password')); ?>" />
|
|
|
|
<button id="snappymail-save-button" name="snappymail-save-button"><?php echo($l->t('Save')); ?></button>
|
|
<span class="snappymail-result-desc"></span>
|
|
</p>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|