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

56 lines
1.6 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="jumbotron">
<div class="container">
<h1>
{% trans %}Login{% endtrans %}
</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-8 col offset-md-2 col-lg-6 offset-lg-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.LoginForm() %}
<form method="post" accept-charset="utf-8" autocomplete="off">
<div class="mb-3">
<b>{{ form.name.label(class="form-label") }}</b>
{{ form.name(class="form-control", value=name) }}
</div>
<div class="mb-3">
<b>{{ form.password.label(class="form-label") }}</b>
{{ form.password(class="form-control", value=password) }}
</div>
<div class="row pt-3">
<div class="col-6 col-md-8">
<a class="align-middle" href="{{ url_for('auth.reset_password') }}">
{% trans %}Forgot your password?{% endtrans %}
</a>
</div>
<div class="col-6 col-md-4">
{{ form.submit(class="btn btn-block btn-primary w-100") }}
</div>
</div>
{{ form.nonce() }}
</form>
{% endwith %}
</div>
</div>
</div>
{% endblock %}