Minor tool styling cleanup

This commit is contained in:
mDuo13
2018-05-07 14:11:49 -07:00
parent 278974841c
commit 4a784ba586
6 changed files with 65 additions and 105 deletions

View File

@@ -11,7 +11,7 @@
<form id="domain-entry">
<fieldset>
<input id="domain" type="text" required
placeholder="Domain name, e.g.example.com"
placeholder="example.com (Domain name to check)"
pattern="^([a-zA-Z0-9]([a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,6}$"><br>
<button class="btn btn-primary">Verify ripple.txt</button>
</fieldset>

View File

@@ -3,16 +3,18 @@
{% block bodyclasses %}page-test-net{% endblock %}
{% block right_sidebar %}
<aside id="test-net-servers" class="card">
<div id="test-net-servers" class="card">
<div class="card-header bg-dark">
<h3 class="card-title">Test Net Servers</h3>
</div><!--/.card-header-->
<div class="card-body">
<div class="card-header">Test Net Servers</div>
<p>Use the following addresses to connect to the XRP Test Net and send transactions from your account.</p>
<h5>Websockets and Ripple API</h4>
<pre><code>wss://s.altnet.rippletest.net:51233</code></pre>
<h5>JSON-RPC</h4>
<pre><code>https://s.altnet.rippletest.net:51234</code></pre>
</div>
</aside>
</div>
{% endblock %}
{% block main %}
@@ -22,7 +24,7 @@
<div class="content">
<p>Ripple has created this alternative XRP Ledger test network with nodes in every region of the world to provide a testing platform for any software products built on the XRP Ledger without using real funds.</p>
<p>Test Net funds are intended for <strong>testing</strong> only. The Test Net ledger and balances will be reset on a regular basis.</p>
<button class="btn btn-primary">Generate credentials</button>
<button id="generate-creds-button" class="btn btn-primary">Generate credentials</button>
<div id='your-credentials'></div>
<div id='loader' style="display: none;"><img class='throbber' src="assets/img/rippleThrobber.png"> Generating Keys...</div>
<div id='address'></div>
@@ -33,6 +35,5 @@
{% endblock %}
{% block endbody %}
<link rel='stylesheet' type='text/css' href='assets/css/test-net.css'/>
<script type='text/javascript' src='assets/js/test-net.js'></script>
{% endblock %}