28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends '_base.html' %}
 | 
						|
{% load static from staticfiles %}
 | 
						|
{% load crispy_forms_tags %}
 | 
						|
{% load form_tags %}
 | 
						|
{% block title %}Anmelden{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <div class="row justify-content-center" style="margin-top: 80px;">
 | 
						|
        <div class="col-lg-4 col-md-6 col-sm-8">
 | 
						|
            <form method="post" novalidate>
 | 
						|
                {% csrf_token %}
 | 
						|
                <div class="card">
 | 
						|
                    <div class="card-header text-center">
 | 
						|
                        <h3>{% settings_value "PRODUCT_INFO" %}</h3>
 | 
						|
                    </div>
 | 
						|
                    <div class="card-body">
 | 
						|
                        <h3 class="card-title">Login</h3>
 | 
						|
                        <input type="hidden" name="next" value="{{ next }}">
 | 
						|
                        {{ form|crispy }}
 | 
						|
                    </div>
 | 
						|
                    <div class="card-footer">
 | 
						|
                        <button type="submit" class="btn btn-primary btn-block">Log in</button>
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
            </form>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
{% endblock %} |