Files
CTFd/templates/confirm.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

54 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block content %}
<div class="jumbotron">
<div class="container">
<h1>
{% trans %}Confirm{% endtrans %}
</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-10 col-lg-8 col-xl-6 offset-md-1 offset-lg-2 offset-xl-3">
{% include "components/errors.html" %}
<h5 class="text-center">
{% trans %}We've sent a confirmation email to your email address.{% endtrans %}
</h5>
<br>
<h5 class="text-center">
{% trans %}Please click the link in that email to confirm your account.{% endtrans %}
</h5>
<br>
<h5 class="text-center">
{% trans %}If the email doesnt arrive, check your spam folder or contact an administrator to manually verify your account.{% endtrans %}
</h5>
<hr>
{% with form = Forms.auth.ConfirmForm() %}
<form method="POST" action="{{ url_for('auth.confirm') }}">
<div class="row">
<div class="mb-3 col-md-6">
{{ form.submit(class="btn btn-primary w-100") }}
</div>
<div class="mb-3 col-md-6">
<a href="{{ url_for('views.settings') }}" class="btn btn-secondary w-100">
{% trans %}Change Email Address{% endtrans %}
</a>
</div>
{{ form.nonce() }}
</div>
</form>
{% endwith %}
</div>
</div>
</div>
{% endblock %}