Skip to content
Snippets Groups Projects
Commit 6e6e66dd authored by Bryan BRANCOTTE's avatar Bryan BRANCOTTE
Browse files

Fixe theme in login screen, fixes #269

parent e5ec6d54
No related branches found
No related tags found
2 merge requests!43K8S deployments of release branche, and other updates,!38Dockerize app, and k8s
Pipeline #83455 passed
{% extends "account/base.html" %} {% extends "base.html" %}
{% load crispy_forms_tags %} {% load crispy_forms_tags %}
{% load i18n %} {% load i18n %}
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
{% block content %} {% block content %}
<div class="d-flex justify-content-center mt-2"> <div class="d-flex justify-content-center mt-4 mb-4">
<div class="card"> <div class="card rounded-0">
<div class="card-header"> <div class="card-header">
<h1>{% trans "Sign In" %}</h1> <h1>{% trans "Sign In" %}</h1>
</div> </div>
...@@ -45,8 +45,8 @@ ...@@ -45,8 +45,8 @@
{% if redirect_field_value %} {% if redirect_field_value %}
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" /> <input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
{% endif %} {% endif %}
<a class="btn btn-secondary" href="{% url 'account_reset_password' %}">{% trans "Forgot Password?" %}</a> <a class="btn btn-secondary mt-0 border-0" href="{% url 'account_reset_password' %}">{% trans "Forgot Password?" %}</a>
<button class="btn btn-primary" type="submit">{% trans "Sign In" %}</button> <button class="btn btn-primary mt-0" type="submit">{% trans "Sign In" %}</button>
</form> </form>
</div> </div>
</div> </div>
......
{% extends "account/base.html" %} {% extends "base.html" %}
{% load crispy_forms_tags %} {% load crispy_forms_tags %}
{% load i18n %} {% load i18n %}
...@@ -6,9 +6,9 @@ ...@@ -6,9 +6,9 @@
{% block head_title %}{% trans "Signup" %}{% endblock %} {% block head_title %}{% trans "Signup" %}{% endblock %}
{% block content %} {% block content %}
<div class="inner-wrap mt-2"> <div class="inner-wrap">
<div class="col-12"> <div class="col-12 mt-4 mb-4">
<div class="card"> <div class="card rounded-0">
<h1 class="card-header">{% trans "Sign Up" %}</h1> <h1 class="card-header">{% trans "Sign Up" %}</h1>
<div class="card-body"> <div class="card-body">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment