1
0

Layout changes

This commit is contained in:
Scott E. Graves
2017-02-04 22:10:58 -06:00
parent 3139588098
commit 87bf6347ca

View File

@@ -1,38 +1,67 @@
<HTML>
<HEAD>
</HEAD>
<BODY ID=CSiaDriveDlg BGCOLOR=LIGHTGREY style="font-family: MS Shell Dlg; font-size:13">
<div align="right">
<label>Client Version:&nbsp;</label><label id="ClientVersion"></label><br />
<label>Server Version:&nbsp;</label><label id="ServerVersion"></label><br />
</div>
<div id="main_window">
<TABLE WIDTH=100% height="75%">
<TR WIDTH=100%>
<TD ALIGN=LEFT VALIGN=TOP>
<input id="wallet_btn" type="button" value="Wallet"/>
<input id="host_btn" type="button" value="Host"/>
<input id="mount_btn" type="button" value="Mount"/>
</TD>
</TR>
<tr width="100%" align="center" valign="top">
<div id="wallet_tab">
<label>Available:&nbsp;</label><label id="WalletBalanceConfirmed"></label><br/>
<label>Pending:&nbsp;</label><label id="WalletBalanceUnconfirmed"></label><br/>
<label>Total:&nbsp;</label><label id="WalletBalanceTotal"></label><br/>
</div>
<div id="host_tab"></div>
<div id="mount_tab"></div>
</tr>
<TR WIDTH=100%">
<TD ALIGN=RIGHT VALIGN=BOTTOM>
<BUTTON STYLE="WIDTH: 100" ID="ButtonOK">OK</BUTTON>&nbsp;<BUTTON STYLE="WIDTH: 100" ID="ButtonCancel">Exit</BUTTON>
</TD>
</TR>
</TABLE>
</div>
<div id="exit_window" style="display: none" align="center">
<BUTTON STYLE="WIDTH: 100" ID="ExitYes">Yes</BUTTON>&nbsp;<BUTTON STYLE="WIDTH: 100" ID="ExitNo">No</BUTTON>
</div>
<BODY ID=CSiaDriveDlg BGCOLOR=LIGHTGREY style="font-family: MS Shell Dlg; font-size:10">
<div style="float: right;">
<table>
<tr>
<td style="text-align: right">Client Version:</td>
<td id="ClientVersion"></td>
</tr>
<tr>
<td style="text-align: right">Server Version:</td>
<td id="ServerVersion"></td>
</tr>
</table>
</div>
<div>
<table>
<tr>
<td style="text-align: right">Available:</td>
<td id="WalletBalanceConfirmed"></td>
</tr>
<tr>
<td style="text-align: right">Pending:</td>
<td id="WalletBalanceUnconfirmed"></td>
</tr>
<tr>
<td style="text-align: right">Total:</td>
<td id="WalletBalanceTotal"></td>
</tr>
</table>
</div>
<div id="main_window" style="padding: 10">
<TABLE WIDTH=100% >
<TR WIDTH=100%>
<TD ALIGN=LEFT VALIGN=TOP>
<input id="wallet_btn" type="button" value="Wallet"/>
<input id="host_btn" type="button" value="Host"/>
<input id="mount_btn" type="button" value="Mount"/>
</TD>
</TR>
<tr width="100%" align="center" valign="top">
<div id="tab_page"></div>
</tr>
</TABLE>
</div>
<div style="position: absolute; bottom: 10; left: 10;width: 100%">
<table width="100%">
<TR width=100%">
<TD ALIGN=RIGHT VALIGN=BOTTOM>
<BUTTON STYLE="WIDTH: 100" ID="ButtonOK">OK</BUTTON>&nbsp;<BUTTON STYLE="WIDTH: 100" ID="ButtonCancel">Exit</BUTTON>
</TD>
</TR>
</table>
</div>
<div id="exit_window" style="display: none" align="center">
<BUTTON STYLE="WIDTH: 100" ID="ExitYes">Yes</BUTTON>&nbsp;<BUTTON STYLE="WIDTH: 100" ID="ExitNo">No</BUTTON>
</div>
<div id="wallet_tab" style="display: none"></div>
<div id="host_tab" style="display: none"></div>
<div id="mount_tab" style="display: none"></div>
</BODY>
</HTML>