summary refs log tree commit diff
path: root/synapse/res/templates/password_reset_confirmation.html
blob: def4b5162b903caa29ae9bdf5aac90e31b16bd75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head></head>
<body>
<!--Use a hidden form to resubmit the information necessary to reset the password-->
<form method="post">
    <input type="hidden" name="sid" value="{{ sid }}">
    <input type="hidden" name="token" value="{{ token }}">
    <input type="hidden" name="client_secret" value="{{ client_secret }}">

    <p>You have requested to <strong>reset your Matrix account password</strong>. Click the link below to confirm this action. <br /><br />
        If you did not mean to do this, please close this page and your password will not be changed.</p>
    <p><button type="submit">Confirm changing my password</button></p>
</form>
</body>
</html>