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-04-30 18:12:31 +02:00

21 lines
767 B
HTML

<!DOCTYPE html>
<html>
<head>
{{> 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>