Fix login to participate button

This commit is contained in:
cuom1999 2022-11-12 02:11:28 -06:00
parent 0998f8c782
commit affcca39f1

View file

@ -74,9 +74,9 @@
{% endif %}
{% elif contest.can_join %}
<form action="{{ url('auth_login') }}" method="get"
class="contest-join-pseudotab unselectable button full">
class="contest-join-pseudotab unselectable">
<input type="hidden" name="next" value="{{ LOGIN_RETURN_PATH|urlencode }}">
<input type="submit" value="{{ _('Login to participate') }}">
<input type="submit" class="btn-midnightblue" value="{{ _('Login to participate') }}">
</form>
{% endif %}
{% endblock %}