20 lines
423 B
HTML
20 lines
423 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<!--
|
||
|
|
This page is displayed when a user opens a password reset link with parameters
|
||
|
|
that are missing or incorrect. This can either mean the user has incorrectly
|
||
|
|
entered a link or this could be a sign of a malicious user trying to tamper
|
||
|
|
with your app.
|
||
|
|
-->
|
||
|
|
<html>
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<title>Password Reset</title>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<h1>{{appName}}</h1>
|
||
|
|
<h1>Invalid password reset link!</h1>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|