21 lines
598 B
Django/Jinja
21 lines
598 B
Django/Jinja
{% extends "lexicon.jinja" %}
|
|
{% block title %}Join | {{ g.lexicon.full_title }}{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<form id="lexicon-join" action="" method="post" novalidate>
|
|
{{ form.hidden_tag() }}
|
|
{% if g.lexicon.join_password %}
|
|
<p>{{ form.password.label }}<br>{{ form.password(size=32) }}</p>
|
|
{% else %}
|
|
<p>Join {{ g.lexicon.full_title }}?</p>
|
|
{% endif %}
|
|
<p>{{ form.submit() }}</p>
|
|
</form>
|
|
|
|
{% for message in get_flashed_messages() %}
|
|
<span style="color:#ff0000">{{ message }}</span><br>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
{% set template_content_blocks = [self.main()] %} |