removed static (means that img path needs to be fixed), login page is beautified
This commit is contained in:
		@@ -2,19 +2,6 @@
 | 
			
		||||
 | 
			
		||||
{% block content %}
 | 
			
		||||
 | 
			
		||||
  {% if form.errors %}
 | 
			
		||||
    <p>Your username and password didn't match. Please try again.</p>
 | 
			
		||||
  {% endif %}
 | 
			
		||||
  
 | 
			
		||||
  {% if next %}
 | 
			
		||||
    {% if user.is_authenticated %}
 | 
			
		||||
      <p>Your account doesn't have access to this page. To proceed,
 | 
			
		||||
      please login with an account that has access.</p>
 | 
			
		||||
    {% else %}
 | 
			
		||||
      <p>Please login to see this page.</p>
 | 
			
		||||
    {% endif %}
 | 
			
		||||
  {% endif %}
 | 
			
		||||
  
 | 
			
		||||
  <form method="post" action="{% url 'login' %}">
 | 
			
		||||
    {% csrf_token %}
 | 
			
		||||
    <table>
 | 
			
		||||
@@ -27,6 +14,22 @@
 | 
			
		||||
        <td>{{ form.password }}</td>
 | 
			
		||||
      </tr>
 | 
			
		||||
    </table>
 | 
			
		||||
 | 
			
		||||
    <div style="color:#f44336">
 | 
			
		||||
    {% if form.errors %}
 | 
			
		||||
    <p>Your username and password didn't match. Please try again.</p>
 | 
			
		||||
    {% endif %}
 | 
			
		||||
  
 | 
			
		||||
    {% if next %}
 | 
			
		||||
    {% if user.is_authenticated %}
 | 
			
		||||
    <p>Your account doesn't have access to this page. To proceed,
 | 
			
		||||
    please login with an account that has access.</p>
 | 
			
		||||
    {% else %}
 | 
			
		||||
    <p>Please login to see this page.</p>
 | 
			
		||||
    {% endif %}
 | 
			
		||||
    {% endif %}
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <input type="submit" value="login" />
 | 
			
		||||
    <input type="hidden" name="next" value="{{ next }}" />
 | 
			
		||||
  </form>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user