-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #306 from DanilochTop/dev2
- Loading branch information
Showing
6 changed files
with
66 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,40 @@ | ||
<link rel="stylesheet" href="/assets/css/forgot-password.css" /> | ||
{{#section 'head'}} | ||
<script src="https://js.hcaptcha.com/1/api.js" async defer></script> | ||
<link rel="stylesheet" href="/assets/css/forgot-password.css" /> | ||
{{/section}} | ||
|
||
{{> header}} | ||
|
||
<div class="wrapper"> | ||
|
||
<div class="account-form-wrapper"> | ||
<form method="post" class="account"> | ||
<form action="/account/forgot-password" method="post" class="account forgot-password"> | ||
<h2>{{ locale.account.forgotPassword.header }}</h2> | ||
<p>{{ locale.account.forgotPassword.sub }}</p> | ||
<div> | ||
<label for="input">{{ locale.account.forgotPassword.input }}</label> | ||
<input name="input" id="input" required> | ||
<input name="input" id="input" value="{{ input }}" required> | ||
</div> | ||
<div class="h-captcha" data-sitekey="cf3fd74e-93ca-47e6-9fa0-5fc439de06d4"></div> | ||
<div class="buttons"> | ||
<button type="submit">{{ locale.account.forgotPassword.submit }}</button> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
<script src="/assets/js/forgot-password.bundled.js"></script> | ||
{{#if success_message}} | ||
<div class="banner-notice success"> | ||
<div> | ||
<p>{{ success_message }}</p> | ||
</div> | ||
</div> | ||
{{/if}} | ||
|
||
{{#if error_message}} | ||
<div class="banner-notice error"> | ||
<div> | ||
<p>{{ error_message }}</p> | ||
</div> | ||
</div> | ||
{{/if}} |