1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-06-06 23:46:29 +02:00
golang-saas-starter-kit/cmd/web-app/templates/content/user-reset-password.gohtml
2019-08-06 13:02:44 -08:00

67 lines
3.1 KiB
Plaintext

{{define "title"}}User Forgot Password{{end}}
{{define "description"}}Request new passwords to the Software-as-a-Service web app by SaaS Company.{{end}}
{{define "style"}}
{{end}}
{{ define "partials/app-wrapper" }}
<div class="container" id="page-content">
<!-- Outer Row -->
<div class="row justify-content-center">
<div class="col-xl-10 col-lg-12 col-md-9">
<div class="card o-hidden border-0 shadow-lg my-5">
<div class="card-body p-0">
<!-- Nested Row within Card Body -->
<div class="row">
<div class="col-lg-6 d-none d-lg-block bg-login-image"></div>
<div class="col-lg-6">
<div class="p-5">
{{ template "app-flashes" . }}
<div class="text-center">
<h1 class="h4 text-gray-900 mb-2">Forgot Your Password?</h1>
<p class="mb-4">We get it, stuff happens. Just enter your email address below and we'll send you a link to reset your password!</p>
</div>
{{ template "validation-error" . }}
<form class="user" method="post" novalidate>
<div class="form-group">
<input type="email"
class="form-control form-control-user {{ ValidationFieldClass $.validationErrors "Email" }}"
name="Email" value="{{ $.form.Email }}" placeholder="Enter Email Address..." required>
{{template "invalid-feedback" dict "fieldName" "Email" "validationDefaults" $.validationDefaults "validationErrors" $.validationErrors }}
</div>
<button class="btn btn-primary btn-user btn-block">
Reset Password
</button>
<hr>
</form>
<hr>
<div class="text-center">
<a class="small" href="/user/login">Already have an account? Login!</a>
</div>
<div class="text-center">
<a class="small" href="/signup">Create an Account!</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{{end}}
{{define "js"}}
<script>
$(document).ready(function() {
$(document).find('body').addClass('bg-gradient-primary');
});
</script>
{{end}}