35 lines
1.5 KiB
Handlebars
35 lines
1.5 KiB
Handlebars
{{!< default-custom}}
|
|
{{#post}}
|
|
<div class="custom-wrap{{>partial_mode}}">
|
|
{{#if feature_image}}
|
|
<div class="custom-image global-bg-image" style="background-image: url({{{img_url feature_image size="l" format="webp"}}})"></div>
|
|
{{/if}}
|
|
<div class="custom-container">
|
|
<div class="custom-logo-wrap">
|
|
<div class="custom-logo">
|
|
{{>logo}}
|
|
</div>
|
|
</div>
|
|
<div class="custom-content">
|
|
<form data-members-form="signup" data-members-autoredirect="false">
|
|
<h1 class="custom-title global-title">{{title}}</h1>
|
|
{{#if @site.portal_name}}
|
|
<input data-members-name type="text" placeholder="{{t "Your name"}}" aria-label="{{t "Your name"}}" required>
|
|
{{/if}}
|
|
<input data-members-email type="email" placeholder="{{t "Your email address"}}" aria-label="{{t "Your email address"}}" required>
|
|
<button class="global-button" type="submit">{{t "Continue"}}</button>
|
|
<div>
|
|
<small class="alert-loading global-alert">{{t "Processing your application"}}</small>
|
|
<small class="alert-error global-alert">{{t "There was an error sending the email"}}</small>
|
|
</div>
|
|
<small class="global-question">{{t "Already have an account?"}} <a href="{{@site.url}}/signin/">{{t "Sign in"}}</a></small>
|
|
</form>
|
|
<div class="alert-success">
|
|
<h2 class="custom-alert-title">{{t "Great!"}}</h2>
|
|
<p>{{t "Please check your inbox and click the link to confirm your signup."}}</p>
|
|
<a href="{{@site.url}}" class="global-button">{{t "Back to homepage"}}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/post}} |