60 lines
2.0 KiB
HTML
60 lines
2.0 KiB
HTML
{%- import 'util/helpers.html' as help -%}
|
||
{%- import 'html_head.html' as html_head with context -%}
|
||
<!DOCTYPE html>
|
||
<html lang="en">
|
||
{{html_head.html_head(true, false, false, none, none, none, false)}}
|
||
<body id="login">
|
||
|
||
<div class="container-fluid position-absolute h-100 p-0">
|
||
<div class="row no-gutters h-100">
|
||
|
||
<div class="col-12 col-md-6 my-auto p-3">
|
||
|
||
<div class="row justify-content-center">
|
||
|
||
<div class="col-10 col-md-7">
|
||
|
||
<div class="text-center mb-5">
|
||
<a href="/" class="text-decoration-none"><span class="h3 text-primary"></span></a>
|
||
</div>
|
||
|
||
<div id="register-form" class="">
|
||
<h1 class="h4 font-weight-normal text-center">Whoops! You can't refer yourself!</h1>
|
||
<p class="text-center text-muted mb-md-5">Send this link to a friend instead :)</p>
|
||
<label>Referral code</label>
|
||
<input autocomplete="off" type="text" class="form-control copy-link" readonly value="{{SITE_FULL}}/signup?ref={{request.values.get('ref')}}" data-clipboard-text="{{SITE_FULL}}/signup?ref={{request.values.get('ref')}}">
|
||
|
||
<div class="text-center text-muted text-small mt-5 mb-3">
|
||
Already have an account? <a href="/login{{'?redirect='+redirect if redirect else ''}}" class="font-weight-bold toggle-login">Log in</a>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
</div>
|
||
|
||
<div class="col-12 col-md-6 d-mob-none">
|
||
|
||
<div class="splash-wrapper">
|
||
|
||
<div class="splash-overlay"></div>
|
||
|
||
<img alt="cover" loading="lazy" class="splash-img" src="{{'cover.webp' | asset_siteimg}}"></img>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<div class="toast clipboard" id="toast-success" role="alert" aria-live="assertive" aria-atomic="true" data-bs-animation="true" data-bs-autohide="true" data-bs-delay="5000">
|
||
<div class="toast-body text-center">
|
||
<i class="fas fa-check-circle text-success mr-2"></i>Link copied to clipboard
|
||
</div>
|
||
</div>
|
||
|
||
</body>
|
||
|
||
</html>
|