mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Different URL for password reset.
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
{% if Config.get('auth.allow_register') %}
|
||||
<a href="{{ URL.to('/register') }}" class="text-center">Register a new account</a><br>
|
||||
{% endif %}
|
||||
<a href="{{ URL.to('/password/email') }}">I forgot my password</a>
|
||||
<a href="{{ URL.to('/password/reset') }}">I forgot my password</a>
|
||||
</div>
|
||||
<!-- /.login-box-body -->
|
||||
{% endblock %}
|
||||
|
@@ -23,7 +23,7 @@
|
||||
<div class="login-box-body">
|
||||
<p class="login-box-msg">Reset your password</p>
|
||||
|
||||
<form role="form" method="POST" action="{{ URL.to('/password/email') }}">
|
||||
<form role="form" method="POST" action="{{ URL.to('/password/reset') }}">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
|
||||
|
||||
<div class="form-group has-feedback">
|
||||
@@ -41,7 +41,7 @@
|
||||
</form>
|
||||
|
||||
<a href="{{ URL.to('/login') }}">I want to login</a><br>
|
||||
<a href="{{ URL.to('/password/email') }}">I forgot my password</a>
|
||||
<a href="{{ URL.to('/password/reset') }}">I forgot my password</a>
|
||||
|
||||
</div><!-- /.login-box-body -->
|
||||
|
||||
|
@@ -47,7 +47,7 @@
|
||||
</form>
|
||||
|
||||
<a href="{{ URL.to('/login') }}">I want to login</a><br>
|
||||
<a href="{{ URL.to('/password/email') }}">I forgot my password</a>
|
||||
<a href="{{ URL.to('/password/reset') }}">I forgot my password</a>
|
||||
</div><!-- /.form-box -->
|
||||
|
||||
{% endblock %}
|
||||
|
Reference in New Issue
Block a user