carom-server/templates/_base_accounts.html

17 lines
407 B
HTML
Raw Permalink Normal View History

2018-02-10 13:44:14 +01:00
{% extends '_base.html' %}
2018-02-10 16:16:14 +01:00
{% load static form_tags %}
2018-02-10 13:44:14 +01:00
{% block stylesheet %}
<link rel="stylesheet" href="{% static 'css/login.css' %}">
{% endblock %}
{% block body %}
<div class="container">
<h1 class="text-center logo my-4">
2018-02-10 16:16:14 +01:00
<a href="{% url 'billard:location_index' %}">{% settings_value "PRODUCT_INFO" %}</a>
2018-02-10 13:44:14 +01:00
</h1>
{% block content %}
{% endblock %}
</div>
{% endblock %}