This repository has been archived on 2025-02-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cavecomm/templates/passwordReset.html
2023-09-20 13:40:24 +02:00

22 lines
794 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
{{> templateIncludes/style.css.html}}
</head>
<body>
<h2>{{freelanceremail}} Password Reset</h2>
<br>
<form action="/passwordreset/{{passwordresetkey}}/fulfilment" method="post">
<label for="freelancerpassword">Password: </label> <input type="password" id="freelancerpassword" name="freelancerpassword" value=""><br>
<label for="freelancerpasswordconfirmation">Confirm Password: </label> <input type="password" id="freelancerpasswordconfirmation" name="freelancerpasswordconfirmation" value=""><br>
<button type="submit" class="button">Reset Password</button>
</form>
<br>
{{> templateIncludes/returnToIndexButton.html.html}}
</body>
</html>