You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
949 B
29 lines
949 B
|
|
{% extends "base_short.html" %} |
|
{% load i18n staticfiles bootstrap3 %} |
|
|
|
{% block title %} |
|
<title> You must be logged in to access this page </title> |
|
{% endblock %} |
|
|
|
|
|
|
|
{% block content %} |
|
<div class="auth-container"> |
|
<div class="auth-bg"></div> |
|
<div class="auth-center"> |
|
<div class="auth-content"> |
|
<div class="auth-box"> |
|
<h1 class="section-heading allcaps">{% trans " You need to login to access " %}</h1> |
|
<form action="{% url 'index' %}" method="get" class="form" novalidated> |
|
<div class="text-center"> |
|
<button type="submit" class="btn choice-btn btn-block"> |
|
{% trans "Back to indexpage" %} |
|
</button> |
|
</div> |
|
</form> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
{% endblock %} |