mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 05:05:42 +00:00 
			
		
		
		
	Merge pull request #1167 from SchrodingersGat/login-page
Improve rendering for login page
This commit is contained in:
		| @@ -1,4 +1,5 @@ | |||||||
| {% load static %} | {% load static %} | ||||||
|  | {% load i18n %} | ||||||
|  |  | ||||||
| <!DOCTYPE html> | <!DOCTYPE html> | ||||||
| <html lang="en"> | <html lang="en"> | ||||||
| @@ -26,17 +27,20 @@ | |||||||
|  |  | ||||||
|     <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|crispy }} | ||||||
|  |  | ||||||
|  |                     <button class='pull-right btn btn-primary' type="submit">{% trans "Login" %}</button> | ||||||
|                 </form> |                 </form> | ||||||
|                 </div> |                 </div> | ||||||
|             </div> |             </div> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user