locale: Update the style for language selection page

- Remove title. Redundant, like in login page.

- Properly center the form.

- Make it responsive.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2018-02-13 12:03:15 +05:30 committed by James Valleroy
parent 1b95432217
commit 4da0b0e5d1
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -22,17 +22,15 @@
{% load bootstrap %}
{% block content%}
<h3> Choose your language </h3>
{% block content_row %}
<div class="col-md-6 col-md-offset-3">
<form method="post">
{% csrf_token %}
{% csrf_token %}
{{ form|bootstrap }}
{{ form|bootstrap }}
<input type="submit" class="btn btn-primary"
value="{% trans "Save Changes" %}"/>
<input type="submit" class="btn btn-primary"
value="{% trans "Save Changes" %}"/>
</form>
</div>
{% endblock %}