19 lines
692 B
HTML
19 lines
692 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading"><h3 class="panel-title">Welcome to the Darknet WHOIS and Management Interface!</h3></div>
|
|
<div class="panel-body">
|
|
<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>.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|