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/resources/views/yuuno/auth/resetpassword.twig

41 lines
1.6 KiB
Twig
Raw Normal View History

2016-07-31 19:36:13 +00:00
{% extends 'master.twig' %}
2016-07-31 01:32:37 +00:00
{% set title = 'Reset Password' %}
{% block content %}
2016-11-09 18:32:23 +00:00
<div class="auth content content--auth">
<div class="content__header">
Reset Password
</div>
2016-11-09 18:32:23 +00:00
<form method="post" action="{{ route('auth.resetpassword') }}" id="passwordForm">
<input type="hidden" name="session" value="{{ session_id() }}">
{% if get.u is defined and get.k is defined %}
<input type="hidden" name="user" value="{{ get.u }}">
<input type="hidden" name="key" value="{{ get.k }}">
<label>
<div class="auth__label">Password</div>
<input class="input__text" type="password" name="password" autofocus>
</label>
<button class="input__button auth__button">
Save Password
</button>
{% else %}
<label>
<div class="auth__label">Username</div>
<input class="input__text" type="text" name="username" autofocus>
</label>
<label>
<div class="auth__label">E-mail</div>
<input class="input__text" type="text" name="email">
</label>
<button class="input__button auth__button">
Request Change
</button>
<div class="auth__subtext">
<a href="{{ route('info.contact') }}">Contact us</a> if you lost access to your e-mail address!
</div>
{% endif %}
</form>
</div>
{% endblock %}