2022-07-17 18:16:00 +00:00
|
|
|
<!--
|
2023-12-30 18:12:22 +00:00
|
|
|
Copyright (C) 2023 Nicola Murino
|
2022-07-17 18:16:00 +00:00
|
|
|
|
2023-12-30 18:12:22 +00:00
|
|
|
This WebUI uses the KeenThemes Mega Bundle, a proprietary theme:
|
2022-07-17 18:16:00 +00:00
|
|
|
|
2023-12-30 18:12:22 +00:00
|
|
|
https://keenthemes.com/products/templates-mega-bundle
|
2022-07-17 18:16:00 +00:00
|
|
|
|
2023-12-30 18:12:22 +00:00
|
|
|
KeenThemes HTML/CSS/JS components are allowed for use only within the
|
|
|
|
SFTPGo product and restricted to be used in a resealable HTML template
|
|
|
|
that can compete with KeenThemes products anyhow.
|
2021-11-13 12:25:43 +00:00
|
|
|
|
2023-12-30 18:12:22 +00:00
|
|
|
This WebUI is allowed for use only within the SFTPGo product and
|
|
|
|
therefore cannot be used in derivative works/products without an
|
|
|
|
explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|
|
|
-->
|
|
|
|
{{- template "baselogin" .}}
|
|
|
|
|
|
|
|
{{- define "content"}}
|
|
|
|
<form class="form w-100" id="sign_in_form" action="{{.CurrentURL}}" method="POST">
|
|
|
|
<div class="container mb-10">
|
|
|
|
<div class="row align-items-center">
|
|
|
|
<div class="col-5 align-items-center">
|
|
|
|
<a href="{{.LoginURL}}">
|
|
|
|
<img alt="Logo" src="{{.StaticURL}}{{.Branding.LogoPath}}" class="h-80px h-md-90px h-lg-100px" />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="col-7">
|
|
|
|
<a href="{{.LoginURL}}" class="text-gray-900 mb-3 ms-3 fs-1 fw-bold">
|
|
|
|
{{.Branding.ShortName}}
|
|
|
|
</a>
|
2021-11-13 12:25:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-12-30 18:12:22 +00:00
|
|
|
<div class="text-center mb-10">
|
|
|
|
<h2 data-i18n="login.forgot_password" class="text-gray-900 mb-3">
|
|
|
|
Forgot Password ?
|
|
|
|
</h2>
|
|
|
|
<div class="text-gray-700 fw-semibold fs-4">
|
|
|
|
<span data-i18n="login.forgot_password_msg">
|
|
|
|
Enter your account username below, you will receive a password reset code by email.
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{- template "errmsg" .Error}}
|
|
|
|
<div class="fv-row mb-10">
|
|
|
|
<input data-i18n="[placeholder]login.your_username" class="form-control form-control-lg form-control-solid" type="text" placeholder="Your username" name="username" spellcheck="false" required />
|
|
|
|
</div>
|
|
|
|
<div class="text-center">
|
|
|
|
<input type="hidden" name="_form_token" value="{{.CSRFToken}}">
|
|
|
|
<button type="submit" id="sign_in_submit" class="btn btn-lg btn-primary w-100 mb-5">
|
|
|
|
<span data-i18n="login.send_reset_code" class="indicator-label">Send Reset Code</span>
|
|
|
|
<span data-i18n="general.wait" class="indicator-progress">
|
|
|
|
Please wait...
|
|
|
|
<span class="spinner-border spinner-border-sm align-middle ms-2"></span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{{- end}}
|