mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
785 B
30 lines
785 B
<html> |
|
|
|
<body> |
|
{{ if .EmailSent }} |
|
|
|
<h1>Thank you, please check your email!</h1> |
|
{{ .Email }} has been sent an email with instructions to reset your password. |
|
|
|
{{ else }} |
|
|
|
{{ if .Error }} |
|
<div> |
|
{{ .Message }} |
|
</div> |
|
{{ end }} |
|
|
|
<h2>Reset Your Password </h2> |
|
<P>We will send you an email with a link to reset your password.</p> |
|
<form id="sendResetPasswordForm" method="POST" action="/send-reset-password"> |
|
<label for="email">Email</label> |
|
<input type="text" name="email" value="" /> |
|
<br/> |
|
<button>Submit</button> |
|
<input type="hidden" name="redirect_uri" value="{{ .RedirectURL }}" /> |
|
<input type="hidden" name="client_id" value="{{ .ClientID }}" /> |
|
</form> |
|
{{ end }} |
|
|
|
</body> |
|
</html>
|
|
|