diff --git a/resources/twig/auth/reset.twig b/resources/twig/auth/reset.twig new file mode 100644 index 0000000000..b4a64a9ac7 --- /dev/null +++ b/resources/twig/auth/reset.twig @@ -0,0 +1,53 @@ +{% extends "./layout/guest.twig" %} + +{% block content %} + + {% if errors|length > 0 %} +
+ Whoops! There were some problems with your input.

+ +
+ {% endif %} + + + +
+

Reset your password

+ +
+ + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ +
+ +
+ +
+ + I want to login
+ {% if Config.get('auth.allow_register') %} + Register a new account
+ {% endif %} +
+ +{% endblock %} diff --git a/resources/twig/emails/password.twig b/resources/twig/emails/password.twig index 2aba25c1fc..5424f36fa8 100644 --- a/resources/twig/emails/password.twig +++ b/resources/twig/emails/password.twig @@ -1 +1 @@ -Click here to reset your password: {{ url('password/reset/' . token) }} +Click here to reset your password: {{ url('password/reset/' ~ token) }} \ No newline at end of file