mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
4a47796781
+ external sso functionality
18 lines
No EOL
846 B
PHP
18 lines
No EOL
846 B
PHP
<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 p($l->t('RainLoop Webmail')); ?></h2>
|
|
<p>
|
|
<input type="text" id="rainloop-email" name="rainloop-email"
|
|
value="<?php echo $_['rainloop-email']; ?>" placeholder="<?php p($l->t('Email')); ?>" />
|
|
|
|
<input type="password" id="rainloop-password" name="rainloop-password"
|
|
value="<?php echo $_['rainloop-password']; ?>" placeholder="<?php p($l->t('Password')); ?>" />
|
|
|
|
<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>
|