Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
if ($_GET['p'] == 'download') $page = 'download.php';
if ($_GET['p'] == 'exchanges') $page = 'exchanges.php';
if ($_GET['p'] == 'video') $page = 'video.php';
if ($_GET['p'] == 'registrars') $page = 'registrars.php';
}
$home = $page == 'home.php' ? 'active' : '';
$download = $page == 'download.php' ? 'active' : '';
$exchanges = $page == 'exchanges.php' ? 'active' : '';
$video = $page == 'video.php' ? 'active' : '';
$registrars = $page == 'registrars.php' ? 'active' : '';

// tag lines
$header = array('<strong>In information</strong><br />we <strong>trust</strong>.',
Expand Down Expand Up @@ -64,6 +66,7 @@
<li class="<?=$home?>"><a href=".">Home</a></li>
<li class="<?=$video?>"><a href="?p=video">Video</a></li>
<li class="<?=$exchanges?>"><a href="?p=exchanges">Exchanges</a></li>
<li class="<?=$registrars?>"><a href="?p=registrars">Registrars</a></li>
<li class="<?=$download?>"><a href="?p=download"><!--span class="glyphicon glyphicon-download-alt"></span--> Download</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
Expand Down
29 changes: 29 additions & 0 deletions registrars.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<div class="alert alert-danger">
<strong>Warning</strong> Only use registrars you trust! Registrars will manage the private keys of the registered domains
for you. This means you fully entrust them with the domains you register and fully depend on them for updating
(including renewing) and transferring domains.
</div>

<div class="row">
<h2>Advantages and disadvantages</h3>
<h4>Advantages</h4>
<ul>
<li>No need to run your own node</li>
<li>No need to extend the domain yourself</li>
<li>No need to deal with Namecoins directly</li>
<li>Additional services could be offered</li>
</ul>
<h4>Disadvantages</h4>
<ul>
<li>Have to trust the registrar</li>
<li>You don't own the domain yourself, depending on the cooperation of the registar</li>
</ul>

<h2>Registars</h3>
<p>The following registrars have been registering .bit domains for a while and seem to be trustworthy. <strong>Again:</strong>
Only use registrars you trust, use at your own risk!</p>
<ul>
<li><a target="_blank" href="https://www.domaincoin.net/">DomainCoin.net</a></li>
<li><a target="_blank" href="https://www.dotbit.me/">dotbit.me</a></li>
</ul>
</div>