mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
28 lines
No EOL
1.3 KiB
PHP
28 lines
No EOL
1.3 KiB
PHP
<div class="section">
|
|
<form id="mail-rainloop-admin-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 p($l->t('RainLoop Webmail')); ?></h2>
|
|
<br />
|
|
<p>
|
|
<?php p($l->t('RainLoop Webmail URL')); ?>:
|
|
<br />
|
|
<input type="text" style="width:300px;" id="rainloop-url" name="rainloop-url" value="<?php echo $_['rainloop-url']; ?>" placeholder="https://" />
|
|
<br />
|
|
<br />
|
|
<?php p($l->t('Absolute (full) path to RainLoop Webmail installation')); ?>:
|
|
<br />
|
|
<input type="text" style="width:300px;" id="rainloop-path" name="rainloop-path" value="<?php echo $_['rainloop-path']; ?>" />
|
|
<br />
|
|
<br />
|
|
<input type="checkbox" id="rainloop-autologin" name="rainloop-autologin" <?php if(true == $_['rainloop-autologin']): ?>checked="checked"<?php endif; ?> /><?php p($l->t('Automatically login with ownCloud user credentials')); ?>
|
|
<br />
|
|
<br />
|
|
<input type="button" id="rainloop-save-button" name="rainloop-save-button" value="<?php p($l->t('Save')); ?>" />
|
|
<span class="rainloop-result-desc"></span>
|
|
</p>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|