mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 09:12:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			329 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			329 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{% comment %}
 | 
						|
SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
{% endcomment %}
 | 
						|
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
{% block title %}{% trans "Log in" %}{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<h2>Login</h2>
 | 
						|
<form method="post">
 | 
						|
  {% csrf_token %}
 | 
						|
  {{ form | crispy }}
 | 
						|
  <button type="submit">Login</button>
 | 
						|
</form>
 | 
						|
{% endblock %}
 |