dnmgmt/templates/index.html

19 lines
692 B
HTML
Raw Normal View History

2017-02-10 02:45:45 +01:00
{% extends "base.html" %}
{% load crispy_forms_tags %}
{% block content %}
<div class="row">
2017-03-20 00:16:33 +01:00
<div class="col-sm-12">
2017-02-10 02:45:45 +01:00
<div class="panel panel-default">
2017-04-15 17:04:50 +02:00
<div class="panel-heading"><h3 class="panel-title">Welcome to the Darknet WHOIS and Management Interface!</h3></div>
2017-02-10 02:45:45 +01:00
<div class="panel-body">
2017-04-15 17:04:50 +02:00
<p>In this interface you can search and manage all your darknet resources!</p>
<p>If you don't know what this interface is for take a look at the <a href="/help/">help</a>. To start managing your resources, <a href="/user/register/">register an account</a>. Or just casually <a href="/whoisdb/search">search for some objects</a>.
2017-02-10 02:45:45 +01:00
</div>
</div>
</div>
</div>
{% endblock %}