2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-30 04:26:44 +00:00

Merge pull request #1167 from SchrodingersGat/login-page

Improve rendering for login page
This commit is contained in:
Oliver 2020-12-15 23:34:32 +11:00 committed by GitHub
commit bf3b5bdd7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{% load static %} {% load static %}
{% load i18n %}
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
@ -26,22 +27,25 @@
<div class='login'> <div class='login'>
<div class="row"> <div class="row">
<div class="col-md-2 col-md-offset-5"> <div class='container-fluid'>
<div class='clearfix content-heading'> <div class='clearfix content-heading'>
<img class="pull-left" src="{% static 'img/inventree.png' %}" width="60" height="60"/> <h3>InvenTree</h3> <img class="pull-left" src="{% static 'img/inventree.png' %}" width="60" height="60"/> <h3>InvenTree</h3>
</div> </div>
<hr> <hr>
<div class='container-fluid'> <div class='container-fluid'>
<form method="post"> <form method="post" action=''>
{% csrf_token %} {% csrf_token %}
{{ form.as_p }} {% load crispy_forms_tags %}
<button class='pull-right btn btn-primary' type="submit">Login</button>
</form> {{ form|crispy }}
<button class='pull-right btn btn-primary' type="submit">{% trans "Login" %}</button>
</form>
</div>
</div> </div>
</div> </div>
</div> </div>
</div>
</div> </div>