1
0

Refactoring

This commit is contained in:
Scott E. Graves
2017-02-17 12:58:29 -06:00
parent 93a6e89a58
commit a001377a12

View File

@@ -1,6 +1,7 @@
<HTML> <html>
<HEAD> <head>
<meta http-equiv="X-UA-Compatible" content="IE=10" /> <title>Sia Drive</title>
<meta http-equiv="X-UA-Compatible" content="IE=11" />
<style> <style>
body { body {
background-color: lightgray; background-color: lightgray;
@@ -63,11 +64,9 @@
background-color: rgba(0, 0, 0, 0.5); background-color: rgba(0, 0, 0, 0.5);
} }
</style> </style>
</HEAD> </head>
<BODY id="CSiaDriveDlg"> <body id="CSiaDriveDlg">
<div id="ID_DisabledOverlay" class="disabled_overlay" style="top: 0;left: 0;"> <div id="ID_DisabledOverlay" class="disabled_overlay" style="top: 0;left: 0;"></div>
</div>
<div id="ID_Body"> <div id="ID_Body">
<div class="fill"> <div class="fill">
<h3>Sia Information</h3> <h3>Sia Information</h3>
@@ -105,59 +104,56 @@
</div> </div>
<div id="exit_window" style="display: none" align="center"> <div id="exit_window" style="display: none;">
<BUTTON STYLE="WIDTH: 100px" ID="ExitYes">Yes</BUTTON>&nbsp;<BUTTON STYLE="WIDTH: 100px" ID="ExitNo">No</BUTTON> <button style="width: 100px" id="ExitYes">Yes</button>&nbsp;<button style="width: 100px" id="ExitNo">No</button>
</div> </div>
<div id="create_wallet" style="display: none" class="fill"> <div id="create_wallet" style="display: none" class="fill">
<h3>Create New Wallet</h3> <h3>Create New Wallet</h3>
<p>Click 'Create' to create a new Sia wallet or exit the application if this is not what you want to do.</p> <p>Click 'Create' to create a new Sia wallet or exit the application if this is not what you want to do.</p>
<button ID="CreateWalletButton">Create</button> <button id="CreateWalletButton">Create</button>
</div> </div>
<div id="unlock_wallet" style="display: none" class="fill"> <div id="unlock_wallet" style="display: none" class="fill">
<h3>Unlock Wallet</h3> <h3>Unlock Wallet</h3>
<p>Enter wallet password and click 'Unlock' to continue.</p> <p>Enter wallet password and click 'Unlock' to continue.</p>
<input type="password" id="ID_WalletUnlockPwd" style="width: inherit"/><br/><br/> <input type="password" id="ID_WalletUnlockPwd" style="width: inherit"/><br/><br/>
<button ID="UnlockWalletButton">Unlock</button> <button id="UnlockWalletButton">Unlock</button>
</div> </div>
<div id="disp_wallet_seed" style="display: none" class="fill"> <div id="disp_wallet_seed" style="display: none" class="fill">
<h3>Wallet Created</h3> <h3>Wallet Created</h3>
<p>Please save the following seed. You will need this to unlock and/or restore your wallet. Click 'Done' once you've backed-up your seed.</p> <p>Please save the following seed. You will need this to unlock and/or restore your wallet. Click 'Done' once you've backed-up your seed.</p>
<textarea rows=4 cols=60 width="100%" id="WalletCreatedSeed"></textarea><br/><br/> <textarea rows=4 cols=60 style="width: 100%" id="WalletCreatedSeed"></textarea><br/><br/>
<button ID="ConfirmSeedButton">Done</button> <button id="ConfirmSeedButton">Done</button>
</div> </div>
<div id="tab_view" style="display: none" class="fill"> <div id="tab_view" style="display: none" class="fill">
<h3>Receive Address</h3> <h3>Receive Address</h3>
<label id="ID_WalletReceiveAddress"></label><br/><br/> <label id="ID_WalletReceiveAddress"></label><br/><br/>
<TABLE class="fill"> <table class="fill">
<TR> <tr>
<TD ALIGN=CENTER VALIGN=TOP> <td style="text-align: center; vertical-align: top">
<select id="MountDrives"></select> <select id="MountDrives"></select>
<input id="MountButton" type="button" value="Mount"/> <input id="MountButton" type="button" value="Mount"/>
<input id="wallet_btn" type="button" value="Wallet" /> <input id="wallet_btn" type="button" value="Wallet" />
<input id="host_btn" type="button" value="Host" /> <input id="host_btn" type="button" value="Host" />
</TD> </td>
</TR>
<tr align="center" valign="top">
</tr> </tr>
</TABLE> </table>
</div> </div>
<div class="footer"> <div class="footer">
<table class="fill"> <table class="fill">
<TR> <tr>
<TD ALIGN=RIGHT VALIGN=BOTTOM> <td style="text-align: right; vertical-align: bottom">
<BUTTON STYLE="WIDTH: 100px" ID="ButtonOK">OK</BUTTON> <button style="width: 100px" id="ButtonOK">OK</button>
<BUTTON STYLE="WIDTH: 100px" ID="ButtonCancel">Exit</BUTTON> <button style="width: 100px" id="ButtonCancel">Exit</button>
</TD> </td>
</TR> </tr>
</table> </table>
</div> </div>
</div> </div>
<script src="res:/JS/#136" type="text/javascript"></script> <script src="res:/JS/#136" type="text/javascript"></script>
</BODY> </body>
</HTML> </html>