mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
html fixes
modified some things based on analysis by this validator. https://validator.w3.org Though I think the main problem is that there was an unclosed <div>. I think what may be happening is that there might be an open div in the header and then a closed div in the footer. Or there's not. And then each thing thats inserted in between the header and footer may or may not have starting and closing <div>. I need to go through and check though. Also, the hidden state mod is from here - http://w3c.github.io/html/single-page.html#hidden-state-typehidden
This commit is contained in:
parent
4b32f7e943
commit
95e6d830c0
1 changed files with 5 additions and 4 deletions
|
@ -43,10 +43,11 @@
|
|||
<tr>
|
||||
<td>Tx version: {{tx_version}}</td>
|
||||
<td>No of confirmations: {{confirmations}}</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td colspan="5">Extra: {{extra}}</td>
|
||||
<td colspan="3">Extra: {{extra}}</td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
@ -81,7 +82,7 @@
|
|||
<div class="content">
|
||||
<h4 style="margin: 0px">Check which outputs belong to given Moenro address and viewkey</h4>
|
||||
<form action="/myoutputs" method="get" style="width:100%; margin-top:2px" class="style-1">
|
||||
<input type="hidden" name="tx_hash" size="90" value="{{tx_hash}}"><br/>
|
||||
<input type="hidden" name="tx_hash" value="{{tx_hash}}"><br/>
|
||||
<input type="text" name="xmr_address" size="90" placeholder="Monero address"><br/>
|
||||
<input type="text" name="viewkey" size="90" placeholder="viewkey" style="margin-top:5px"><br/>
|
||||
<input type="submit" value="Decode outputs" style="margin-top:5px" >
|
||||
|
@ -99,9 +100,9 @@
|
|||
<h5 style="margin: 0px">Tx private key can be obtained using <i>get_tx_key</i>
|
||||
command in <i>monero-wallet-cli</i> command line tool</h5>
|
||||
<form action="/prove" method="get" style="width:100%;margin-top:2px" class="style-1">
|
||||
<input type="hidden" name="txhash" size="90" value="{{tx_hash}}"><br/>
|
||||
<input type="hidden" name="txhash" value="{{tx_hash}}"><br/>
|
||||
<input type="text" name="txprvkey" size="90" placeholder="Tx private key"><br/>
|
||||
<input type="text" name="xmraddress" size="90"placeholder="Recipient's Monero Address" style="margin-top:5px"><br/>
|
||||
<input type="text" name="xmraddress" size="90" placeholder="Recipient's Monero Address" style="margin-top:5px"><br/>
|
||||
<input type="submit" value="Prove" style="margin-top:5px">
|
||||
</form>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue