moved create account link on login page to a hook
This commit is contained in:
parent
581e52c264
commit
f66e4282d4
@ -48,7 +48,9 @@ def setup_plugin():
|
|||||||
pluginapi.register_template_hooks(
|
pluginapi.register_template_hooks(
|
||||||
{'edit_link': 'mediagoblin/plugins/basic_auth/edit_link.html',
|
{'edit_link': 'mediagoblin/plugins/basic_auth/edit_link.html',
|
||||||
'fp_link': 'mediagoblin/plugins/basic_auth/fp_link.html',
|
'fp_link': 'mediagoblin/plugins/basic_auth/fp_link.html',
|
||||||
'fp_head': 'mediagoblin/plugins/basic_auth/fp_head.html'})
|
'fp_head': 'mediagoblin/plugins/basic_auth/fp_head.html',
|
||||||
|
'create_account':
|
||||||
|
'mediagoblin/plugins/basic_auth/create_account_link.html'})
|
||||||
|
|
||||||
|
|
||||||
def get_user(**kwargs):
|
def get_user(**kwargs):
|
||||||
|
@ -0,0 +1,27 @@
|
|||||||
|
{#
|
||||||
|
# GNU MediaGoblin -- federated, autonomous media hosting
|
||||||
|
# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Affero General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU Affero General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Affero General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#}
|
||||||
|
|
||||||
|
{% block create_account %}
|
||||||
|
{% if allow_registration %}
|
||||||
|
<p>
|
||||||
|
{% trans %}Don't have an account yet?{% endtrans %}
|
||||||
|
<a href="{{ request.urlgen('mediagoblin.auth.register') }}">
|
||||||
|
{%- trans %}Create one here!{% endtrans %}</a>
|
||||||
|
</p>
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
@ -39,13 +39,7 @@
|
|||||||
{% trans %}Logging in failed!{% endtrans %}
|
{% trans %}Logging in failed!{% endtrans %}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if allow_registration %}
|
{% template_hook("create_account") %}
|
||||||
<p>
|
|
||||||
{% trans %}Don't have an account yet?{% endtrans %}
|
|
||||||
<a href="{{ request.urlgen('mediagoblin.auth.register') }}">
|
|
||||||
{%- trans %}Create one here!{% endtrans %}</a>
|
|
||||||
</p>
|
|
||||||
{% endif %}
|
|
||||||
{% template_hook("login_link") %}
|
{% template_hook("login_link") %}
|
||||||
{{ wtforms_util.render_divs(login_form, True) }}
|
{{ wtforms_util.render_divs(login_form, True) }}
|
||||||
{% template_hook("fp_link") %}
|
{% template_hook("fp_link") %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user