This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/_sakura/templates/yuuno/main/forgotpassword.tpl

27 lines
1.7 KiB
Smarty
Raw Normal View History

2015-04-21 14:23:28 +00:00
{% include 'global/header.tpl' %}
<div class="content news settings">
<div class="head">Forgot Password</div>
<form method="post" action="{{ urls.format('AUTH_ACTION') }}" id="passwordForm">
2015-04-21 14:23:28 +00:00
<input type="hidden" name="session" value="{{ php.sessionid }}" />
<input type="hidden" name="time" value="{{ php.time }}" />
2015-04-25 20:08:44 +00:00
<input type="hidden" name="uid" value="{{ auth.userId }}" />
2015-04-21 14:23:28 +00:00
<input type="hidden" name="mode" value="changepassword" />
2015-06-25 22:35:06 +00:00
<div class="profile-field{% if auth.forgotKey %} hidden{% endif %}">
2015-04-21 14:23:28 +00:00
<div><h2>Verification Key</h2></div>
2015-06-25 22:35:06 +00:00
<div style="text-align: center;"><input type="text" name="verk" placeholder="The key that was sent to you in the e-mail" class="inputStyling"{% if auth.forgotKey %} value="{{ auth.forgotKey }}"{% endif %} /></div>
2015-04-21 14:23:28 +00:00
</div>
<div class="profile-field">
<div><h2>New Password</h2></div>
2015-04-25 20:08:44 +00:00
<div style="text-align: center;"><input type="password" name="newpw" placeholder="Your new password, using special characters is recommended" class="inputStyling" /></div>
2015-04-21 14:23:28 +00:00
</div>
<div class="profile-field">
<div><h2>Verify Password</h2></div>
<div style="text-align: center;"><input type="password" name="verpw" placeholder="Your new password again to make sure you didn't typo anything" class="inputStyling" /></div>
</div>
<div class="profile-save">
<input type="submit" value="Save" name="submit" class="inputStyling" /> <input type="reset" value="Reset" name="reset" class="inputStyling" />
</div>
</form>
</div>
{% include 'global/footer.tpl' %}