Files
CTFd/templates/register.html
Kevin Chung a64e7d51ef Squashed 'CTFd/themes/core-beta/' changes from 9126d77d..5ce3003b
5ce3003b Merge pull request #47 from aCursedComrade/patch-1
c9887cb1 Fix team template

git-subtree-dir: CTFd/themes/core-beta
git-subtree-split: 5ce3003b4d68352e629ee2d390bc999e7d6b071e
2023-06-11 15:56:28 -04:00

82 lines
2.6 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="jumbotron">
<div class="container">
<h1>
{% trans %}Register{% endtrans %}
</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3">
{% include "components/errors.html" %}
{% if integrations.mlc() %}
<a class="btn btn-secondary btn-lg btn-block w-100" href="{{ url_for('auth.oauth_login') }}">
Login with Major League Cyber
</a>
<hr>
{% endif %}
{% with form = Forms.auth.RegistrationForm() %}
{% from "macros/forms.html" import render_extra_fields %}
<form method="post" accept-charset="utf-8" autocomplete="off" role="form">
<div class="mb-3">
<b>{{ form.name.label(class="form-label") }}</b>
{{ form.name(class="form-control", value=name) }}
<small class="form-text text-muted">
{% trans %}Your username on the site{% endtrans %}
</small>
</div>
<div class="mb-3">
<b>{{ form.email.label(class="form-label") }}</b>
{{ form.email(class="form-control", value=email) }}
<small class="form-text text-muted">
{% trans %}Never shown to the public{% endtrans %}
</small>
</div>
<div class="mb-3">
<b>{{ form.password.label(class="form-label") }}</b>
{{ form.password(class="form-control", value=password) }}
<small class="form-text text-muted">
{% trans %}Password used to log into your account{% endtrans %}
</small>
</div>
{{ form.nonce() }}
{{ render_extra_fields(form.extra) }}
<div class="row pt-3">
<div class="col-6 col-md-4 offset-6 offset-md-8">
{{ form.submit(class="btn btn-block btn-primary w-100") }}
</div>
</div>
{% if Configs.tos_or_privacy %}
<div class="row pt-3">
<div class="col-md-12 text-center">
<small class="text-muted text-center">
By registering, you agree to the
<a href="{{ Configs.privacy_link }}" rel="noopener" target="_blank">privacy policy</a>
and <a href="{{ Configs.tos_link }}" rel="noopener" target="_blank">terms of service</a>
</small>
</div>
</div>
{% endif %}
</form>
{% endwith %}
</div>
</div>
</div>
{% endblock %}