14 lines
		
	
	
		
			357 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			357 B
		
	
	
	
		
			HTML
		
	
	
	
{% extends 'base.html' %}
 | 
						|
 | 
						|
{% block title %}Secret required{% endblock %}
 | 
						|
 | 
						|
{% block body %}
 | 
						|
<h1>Secret required</h1>
 | 
						|
<form method="POST" action="/auth">
 | 
						|
    <input type="hidden" name="location" value="{{ path }}">
 | 
						|
    <input type="text" name="pass" />
 | 
						|
    <input type="submit" />
 | 
						|
</form>
 | 
						|
<p style="color:red;">{{ error_msg|default('') }}</p>
 | 
						|
{% endblock %}
 |