mirror of
https://github.com/pinry/pinry.git
synced 2026-01-22 23:32:29 +01:00
16 lines
421 B
HTML
16 lines
421 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Private{% endblock %}
|
|
|
|
{% block yield %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div id="form" class="col-sm-6 col-sm-offset-3">
|
|
<h1>Private</h1>
|
|
<h3>This website is set to private. You need to login before you
|
|
can view any content.</h3>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|