Template/Update (Part 46 - III)
* account management rework: Recovery Options
This commit is contained in:
parent
f16479b50c
commit
8fadce88ad
15 changed files with 603 additions and 143 deletions
46
template/bricks/inputbox-form-email.tpl.php
Normal file
46
template/bricks/inputbox-form-email.tpl.php
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
<?php
|
||||
namespace Aowow\Template;
|
||||
|
||||
use \Aowow\Lang;
|
||||
?>
|
||||
<div class="pad3"></div>
|
||||
|
||||
<script type="text/javascript">//<![CDATA[
|
||||
function inputBoxValidate(f)
|
||||
{
|
||||
var e = $('input[name=email]', f);
|
||||
if (e.val().length == 0)
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_enteremail;
|
||||
e.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!g_isEmailValid(e.val()))
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_emailnotvalid;
|
||||
e.focus();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//]]>
|
||||
</script>
|
||||
|
||||
<form action="<?=$action ?? '.'; ?>" method="post" onsubmit="return inputBoxValidate(this)">
|
||||
<div class="inputbox">
|
||||
<h1><?=$head ?? ''; ?></h1>
|
||||
<div id="inputbox-error"><?=$error ?? ''; ?></div>
|
||||
<?php if ($message ?? ''): ?>
|
||||
<?=$message; ?>
|
||||
<div class="pad2"></div>
|
||||
<?php endif; ?>
|
||||
<div style="text-align: center">
|
||||
<?=Lang::account('email').Lang::main('colon'); ?><input type="text" name="email" value="" id="email-generic" style="width: 12em" />
|
||||
<div class="pad2"></div>
|
||||
|
||||
<input type="submit" value="<?=Lang::account('continue'); ?>" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
<script type="text/javascript">$WH.ge('email-generic').focus()</script>
|
||||
78
template/bricks/inputbox-form-password.tpl.php
Normal file
78
template/bricks/inputbox-form-password.tpl.php
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
<?php
|
||||
namespace Aowow\Template;
|
||||
|
||||
use \Aowow\Lang;
|
||||
?>
|
||||
<div class="pad3"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
function inputBoxValidate(f)
|
||||
{
|
||||
var _ = f.elements[0];
|
||||
if (_.value.length == 0)
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_enternewpass;
|
||||
_.focus();
|
||||
return false;
|
||||
}
|
||||
else if (_.value.length < 4)
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_passwordmin;
|
||||
_.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
_ = f.elements[1];
|
||||
if (_.value.length == 0 || f.elements[2].value != _.value)
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_passwordsdonotmatch;
|
||||
_.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
var e = $('input[name=email]', f)
|
||||
if (e.val().length == 0)
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_enteremail;
|
||||
e.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!g_isEmailValid(e.val()))
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_emailnotvalid;
|
||||
e.focus();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<form action="<?=$action ?? '.'; ?>" method="post" onsubmit="return inputBoxValidate(this)">
|
||||
<div class="inputbox" style="position: relative">
|
||||
<h1><?=$head ?? ''; ?></h1>
|
||||
<div id="inputbox-error"><?=$error ?? ''; ?></div>
|
||||
|
||||
<table align="center">
|
||||
<tr>
|
||||
<td align="right"><?=Lang::account('email').Lang::main('colon'); ?></td>
|
||||
<td><input type="text" name="email" style="width: 10em" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><?=Lang::account('newPass'); ?></td>
|
||||
<td><input type="password" name="password" style="width: 10em" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><?=Lang::account('passConfirm'); ?></td>
|
||||
<td><input type="password" name="c_password" style="width: 10em" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top"></td>
|
||||
<td><input type="submit" name="signup" value="<?=Lang::account('continue'); ?>" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<input type="hidden" name="key" value="<?=$token ?? ''; ?>" />
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<script type="text/javascript">$WH.ge('username-generic').focus()</script>
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
|
||||
<?php if ($hasRecovery): ?>
|
||||
<br />
|
||||
<div style="position: absolute; right: 5px; bottom: 5px; white-space: nowrap;"><?=Lang::account('forgot').Lang::main('colon'); ?><a href="?account=forgotusername"><?=Lang::account('forgotUser'); ?></a> | <a href="?account=forgotpassword"><?=Lang::account('forgotPass'); ?></a> | <a href="?account=resend"><?=Lang::account('inputbox', 'head', 'resendMail'); ?></a></div>
|
||||
<div style="position: absolute; right: 5px; bottom: 5px; white-space: nowrap;"><?=Lang::account('forgot').Lang::main('colon'); ?><a href="?account=forgot-username"><?=Lang::account('forgotUser'); ?></a> | <a href="?account=forgot-password"><?=Lang::account('forgotPass'); ?></a> | <a href="?account=resend"><?=Lang::account('inputbox', 'head', 'resendMail'); ?></a></div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@
|
|||
Password Reset
|
||||
Follow this link to reset your password.
|
||||
|
||||
HOST_URL?account=forgotpassword&key=%s
|
||||
HOST_URL?account=reset-password&key=%s
|
||||
|
||||
If you did not request this mail simply ignore it.
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@
|
|||
Réinitialisation du mot de passe
|
||||
Suivez ce lien pour réinitialiser votre mot de passe.
|
||||
|
||||
HOST_URL?account=forgotpassword&key=%s
|
||||
HOST_URL?account=reset-password&key=%s
|
||||
|
||||
Si vous n'avez pas fait de demande de réinitialisation, ignorez cet e-mail.
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@
|
|||
Kennwortreset
|
||||
Folgt diesem Link um euer Kennwort zurückzusetzen.
|
||||
|
||||
HOST_URL?account=forgotpassword&key=%s
|
||||
HOST_URL?account=reset-password&key=%s
|
||||
|
||||
Falls Ihr diese Mail nicht angefordert habt kann sie einfach ignoriert werden.
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@
|
|||
重置密码
|
||||
点击此链接以重置您的密码。
|
||||
|
||||
HOST_URL?account=forgotpassword&key=%s
|
||||
HOST_URL?account=reset-password&key=%s
|
||||
|
||||
如果您没有请求此邮件,请忽略它。
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@
|
|||
Reinicio de Contraseña
|
||||
Siga este enlace para reiniciar su contraseña.
|
||||
|
||||
HOST_URL?account=forgotpassword&key=%s
|
||||
HOST_URL?account=reset-password&key=%s
|
||||
|
||||
Si usted no solicitó este correo, por favor ignorelo.
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@
|
|||
Сброс пароля
|
||||
Перейдите по этой ссылке, чтобы сбросить свой пароль.
|
||||
|
||||
HOST_URL?account=forgotpassword&key=%s
|
||||
HOST_URL?account=reset-password&key=%s
|
||||
|
||||
Если вы не запрашивали это письмо, просто проигнорируйте его.
|
||||
|
|
|
|||
|
|
@ -1,136 +0,0 @@
|
|||
<?php namespace Aowow; ?>
|
||||
|
||||
<?php $this->brick('header'); ?>
|
||||
|
||||
<div class="main" id="main">
|
||||
<div class="main-precontents" id="main-precontents"></div>
|
||||
<div class="main-contents" id="main-contents">
|
||||
<?php
|
||||
$this->brick('announcement');
|
||||
|
||||
$this->brick('pageTemplate');
|
||||
?>
|
||||
<div class="pad3"></div>
|
||||
<?php if (!empty($this->text)): ?>
|
||||
<div class="inputbox">
|
||||
<h1><?=$this->head; ?></h1>
|
||||
<div id="inputbox-error"></div>
|
||||
<div style="text-align: center; font-size: 110%"><?=$this->text; ?></div>
|
||||
</div>
|
||||
<?php elseif ($this->resetPass): ?>
|
||||
<script type="text/javascript">
|
||||
function inputBoxValidate(f)
|
||||
{
|
||||
_ = f.elements[0];
|
||||
if (_.value.length == 0)
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_enternewpass;
|
||||
_.focus();
|
||||
return false;
|
||||
}
|
||||
else if (_.value.length < 4)
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_passwordmin;
|
||||
_.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
_ = f.elements[1];
|
||||
if (_.value.length == 0 || f.elements[1].value != _.value)
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_passwordsdonotmatch;
|
||||
_.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
var e = $('input[name=email]', f)
|
||||
if (e.val().length == 0)
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_enteremail;
|
||||
e.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!g_isEmailValid(e.val()))
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_emailnotvalid;
|
||||
e.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<form action="?account=signup&next=<?=$this->next . '&token=' . $this->token; ?>" method="post" onsubmit="return inputBoxValidate(this)">
|
||||
<div class="inputbox" style="position: relative">
|
||||
<h1><?=$this->head; ?></h1>
|
||||
<div id="inputbox-error"><?=$this->error; ?></div>
|
||||
|
||||
<table align="center">
|
||||
<tr>
|
||||
<td align="right"><?=Lang::account('email').Lang::main('colon'); ?></td>
|
||||
<td><input type="text" name="email" style="width: 10em" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><?=Lang::account('newPass').Lang::main('colon'); ?></td>
|
||||
<td><input type="password" name="password" style="width: 10em" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><?=Lang::account('passConfirm').Lang::main('colon'); ?></td>
|
||||
<td><input type="password" name="c_password" style="width: 10em" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top"></td>
|
||||
<td><input type="submit" name="signup" value="<?=Lang::account('continue'); ?>" /></td>
|
||||
</tr>
|
||||
<input type="hidden" name="token" value="<?=$this->token; ?>" />
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<script type="text/javascript">$WH.ge('username-generic').focus()</script>
|
||||
<?php else: ?>
|
||||
<script type="text/javascript">//<![CDATA[
|
||||
function inputBoxValidate(f)
|
||||
{
|
||||
var e = $('input[name=email]', f);
|
||||
if (e.val().length == 0)
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_enteremail;
|
||||
e.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!g_isEmailValid(e.val()))
|
||||
{
|
||||
$WH.ge('inputbox-error').innerHTML = LANG.message_emailnotvalid;
|
||||
e.focus();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//]]>
|
||||
</script>
|
||||
|
||||
<form action="?account=<?=$this->category[0]; ?>" method="post" onsubmit="return inputBoxValidate(this)">
|
||||
<div class="inputbox">
|
||||
<h1><?=$this->head; ?></h1>
|
||||
<div id="inputbox-error"><?=$this->error; ?></div>
|
||||
|
||||
<div style="text-align: center">
|
||||
<?=Lang::account('email').Lang::main('colon'); ?><input type="text" name="email" value="" id="email-generic" style="width: 12em" />
|
||||
<div class="pad2"></div>
|
||||
|
||||
<input type="submit" value="<?=Lang::account('continue'); ?>" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
<script type="text/javascript">$WH.ge('email-generic').focus()</script>
|
||||
<?php endif; ?>
|
||||
<div class="clear"></div>
|
||||
</div><!-- main-contents -->
|
||||
</div><!-- main -->
|
||||
|
||||
<?php $this->brick('footer'); ?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue