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

40 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="jumbotron">
<div class="container">
<h1>{% trans %}Join Team{% endtrans %}</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-8 col-lg-6 offset-md-2 offset-lg-3">
{% include "components/errors.html" %}
<p class="h3 text-center mt-md-4">
{% trans %}Welcome to{% endtrans %} <strong>{{ team.name }}</strong>!
</p>
<p class="text-center">
{% trans %}Click the button below to join the team!{% endtrans %}
<br>
<small class="text-muted">
Or <a href="{{ url_for('teams.new') }}">click here</a> if you'd prefer to create your own team.
</small>
</p>
{% with form = Forms.teams.TeamInviteJoinForm() %}
<form method="POST">
<div class="row pt-3 text-center">
<div class="col-md-12">
{{ form.submit(class="btn btn-success w-100") }}
</div>
</div>
{{ form.nonce() }}
</form>
{% endwith %}
</div>
</div>
</div>
{% endblock %}