19 lines
343 B
HTML
19 lines
343 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<!--
|
||
|
|
This page is displayed when a user opens a reset password link, then submits
|
||
|
|
the form with a new password and the password gets updated successfully.
|
||
|
|
-->
|
||
|
|
<html>
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<title>Password Reset</title>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<h1>{{appName}}</h1>
|
||
|
|
<h1>Success!</h1>
|
||
|
|
<p>Your password has been updated.</p>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|