23 lines
		
	
	
		
			763 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			763 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends '_base_accounts.html' %}
 | 
						|
 | 
						|
{% load crispy_forms_tags %}
 | 
						|
 | 
						|
{% block title %}login{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <div class="row justify-content-center">
 | 
						|
        <div class="col-lg-4 col-md-6 col-sm-8">
 | 
						|
            <div class="card">
 | 
						|
                <div class="card-body">
 | 
						|
                    <h3 class="card-title">Log in</h3>
 | 
						|
                    <form method="post" novalidate>
 | 
						|
                        {% csrf_token %}
 | 
						|
                        <input type="hidden" name="next" value="{{ next }}">
 | 
						|
                        {{ form|crispy }}
 | 
						|
                        <button type="submit" class="btn btn-primary btn-block">Log in</button>
 | 
						|
                    </form>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
{% endblock %} |