You've already forked golang-base-project
18 lines
809 B
HTML
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" . }} |