rDrama/files/templates/sign_up.html

137 lines
6.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{%- 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, title, none, "", false, true)}}
<head>
{{html_head.javascript()}}
{#{html_head.stylesheets(true, '')}#}
{{html_head.meta_tags_1(csp, none, true)}}
<link rel="icon" type="image/webp" href="{{'icon.webp' | asset_siteimg}}">
{% block title %}
<title>{{SITE_NAME}}</title>
{{html_head.meta_tags_2(SITE_NAME, SITE_FULL)}}
{% endblock %}
{{html_head.seo()}}
{{html_head.cf_2fa_verify()}}
<!-- COMMENT / UNCOMMENT FOR NEKOCEL DEV SHIT -->
<link rel="stylesheet" href="{{'css/main-dev.css' | asset}}">
</head>
<body id="login">
<div id="register-form-container">
<div id="register-form">
<div class="form-header">
{% if ref_user %}
<h1 class="form-header-text">@{{ref_user.username}} has invited you!</h1>
<p class="form-header-text-alt">Looks like someone wants you to join {{SITE_NAME}}.</p>
{% elif SITE_NAME == 'rDrama' and site_settings['login_required'] %}
<p class="text-muted text-justify mb-3" style="line-height: 1.2em">
Hiiiiii its your favorite user Carp! Were currently on <span style="font-variant-caps: small-caps;">Login Required</span> mode for one of a few reasons:
</p>
<ol style="padding-left: 1.5em">
<li>The site is running really slowly and we think it might be miscreants up to no good, or</li>
<li>Its our monthly 24 hours of login-required-mode to encourage lovely lurkers to become lovely new friends of ours, or</li>
<li>Someone clicked the toggle by mistake lol oops sorry!</li>
</ol>
<p class="text-muted text-justify mb-1" style="line-height: 1.2em">
But thats all fine. Signing up is easy. It takes literally like 4 seconds if youre slow. You dont even need an email! Just pick a username, make up some neat new password where you replace all the es with 3s or whatever and bam, done, youre in.<br>
Remember to click “Follow” on my profile!
</p>
<p class="text-muted mb-md-2">
I love you.<br>
<em>xoxo carp</em> 💋
</p>
<hr>
{% elif SITE_NAME == 'WPD' and site_settings['login_required'] %}
<p class="text-muted text-justify mb-1" style="line-height: 1.2em">
<strong>Hi you!</strong> &mdash; <span style="font-variant-caps: small-caps;">watchpeopledie.tv</span> is currently doing our monthly 24(ish) hours of "everyone needs to have an account" &mdash; sorry about that! But making an account is actually super easy. <strong>You don't even need an email address!</strong> Literally just pick a username, set a password, and that's that. Bam, done, like 8 seconds, tops.<br>
</p>
<p class="text-muted mb-md-2">
We WANT you with us &#128150;<br>
Please join!
</p>
<hr>
{% else %}
<h1 class="form-header-text">Create your account.</h1>
<p class="form-header-text-alt">No email address required.</p>
{% endif %}
</div>
<form action="/signup" method="post" id="signup">
{% if error %}<span class="text-danger">{{error}}</span><br>{% endif %}
<input type="hidden" name="formkey" value="{{formkey}}">
<input type="hidden" name="now" value="{{now}}">
{% if redirect %}<input type="hidden" name="redirect" value="{{redirect}}">{% endif %}
{% if ref_user %}
<input type="hidden" name="referred_by" value="{{ref_user.id}}">{% endif %}
<label for="username-register" class="form-group">
<span class="form-title">Username</span>
<input autocomplete="off" class="form-block" id="username-register"
aria-describedby="usernameHelpRegister" type="text" name="username" pattern="[a-zA-Z0-9_\-]{3,25}" min="3" max="25" required="">
<small id="usernameHelpRegister"></small>
</label>
<label for="email-register" class="form-group">
<span class="form-title">Email Address <small class="form-title-alt">(optional)</small></span>
<input autocomplete="off" class="form-block" id="email-register"
aria-describedby="emailHelpRegister" type="email" pattern='([A-Za-z0-9]+[.-_])*[A-Za-z0-9]+@[A-Za-z0-9-]+(\.[A-Z|a-z]{2,})+' name="email" readonly onfocus="if (this.hasAttribute('readonly')) {this.removeAttribute('readonly');this.blur();this.focus()}">
</label>
<label for="password-register" class="form-group">
<span class="form-title">Password</span>
<input autocomplete="off" class="form-block" id="password-register"
aria-describedby="passwordHelpReigster" type="password" name="password" required="">
<small id="passwordHelpRegister" class="form-text font-weight-bold text-muted d-none mt-1">Minimum of 8
characters
required.</small>
<small id="passwordHelpSuccess" class="form-text font-weight-bold text-success d-none mt-1">Your password meets the requirements.
</small>
</label>
<label for="password_confirm" class="form-group">
<span class="form-title">Confirm Password</span>
<input autocomplete="off" class="form-block" id="password_confirm"
aria-describedby="passwordConfirmHelp" type="password" name="password_confirm"
required="">
</label>
<label class="form-group terms" for="termsCheck">
<input autocomplete="off" type="checkbox" id="termsCheck" required>
I accept the <a href="/logged_out/sidebar">rules</a>
</label>
{% if hcaptcha != 'blahblahblah' %}
<div class="h-captcha" data-sitekey="{{hcaptcha}}" dark-theme="dark"></div>
{% endif %}
<button class="btn btn-primary form-block" id="register_button">Register</button>
<div class="account-already-have">
Already have an account? <a href="/login{{'?redirect='+redirect if redirect else ''}}" class="font-weight-bold toggle-login">Log in</a>
</div>
</form>
</div>
</div>
<div class="splash-wrapper">
<img alt="cover" loading="lazy" class="splash-img" src="{{'cover.webp' | asset_siteimg}}"></img>
</div>
<!-- Bloat -->
<script defer src="{{'js/signup.js' | asset}}"></script>
{% if hcaptcha != 'blahblahblah' %}
<script defer src="{{'js/hcaptcha.js' | asset}}"></script>
{% endif %}
</body>
</html>