mirror of
https://github.com/pinry/pinry.git
synced 2025-11-16 09:55:50 +01:00
19 lines
442 B
HTML
19 lines
442 B
HTML
{% extends 'core/base.html' %}
|
|
|
|
{% load bootstrap_field %}
|
|
|
|
|
|
{% block title %}Private{% endblock %}
|
|
|
|
{% block yield %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div id="form" class="span6 offset3">
|
|
<h1>Private</h1>
|
|
<p>This website is set to private. You need to login before you
|
|
can view any content.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|