note about server side calculations added to tx info page

This commit is contained in:
moneroexamples 2017-01-18 18:05:31 +08:00
parent e55f020a59
commit 9d671da4eb
2 changed files with 12 additions and 5 deletions

View File

@ -70,7 +70,7 @@ form {
.tabs {
position: relative;
min-height: 200px; /* This part sucks */
min-height: 220px; /* This part sucks */
clear: both;
margin: 25px 0;
}

View File

@ -83,14 +83,17 @@
<label for="tab-1">Decode outputs</label>
<div class="content">
<h4 style="margin: 0px">Check which outputs belong to given Monero address and viewkey</h4>
<h5 style="margin: 0px">For RingCT transactions, outputs' amounts are also decoded</h5>
<h5 style="margin: 0px">
For RingCT transactions, outputs' amounts are also decoded
<br/>
Note: these calculations are done on the server side, because there is no javascript
</h5>
<form action="/myoutputs" method="get" style="width:100%; margin-top:2px" class="style-1">
<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" >
</form>
</div>
</div>
@ -100,8 +103,12 @@
<div class="content">
<h4 style="margin: 0px">Prove to someone that you send them Monero in this transaction</h4>
<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>
<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
<br/>
Note: these calculations are done on the server side, because there is no javascript
</h5>
<form action="/prove" method="get" style="width:100%;margin-top:2px" class="style-1">
<input type="hidden" name="txhash" value="{{tx_hash}}"><br/>
<input type="text" name="txprvkey" size="90" placeholder="Tx private key"><br/>