Archived
Template
1
0
This repository has been archived on 2023-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
golang-base-project/dist/templates/resendactivation.html
2022-01-29 10:21:05 +01:00

18 lines
809 B
HTML

{{ template "header.html" . }}
<main class="form-signin">
<form method="post" action="/activate/resend">
<h1 class="h3 mb-3 fw-normal">{{ call .Trans "Resend Activation Email" }}</h1>
{{ template "messages.html" . }}
<p>{{ call .Trans "If you have already registered but never activated your account you can use the form below to request a new activation email." }}</p>
<div class="form-floating">
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
<label for="floatingInput">{{ call .Trans "Email address" }}</label>
</div>
<button class="w-100 btn btn-lg btn-primary" type="submit">{{ call .Trans "Request activation email" }}</button>
</form>
</main>
{{ template "footer.html" . }}