diff options
author | Daniel <darthdaniel85@gmail.com> | 2013-11-18 14:44:44 -0800 |
---|---|---|
committer | Daniel <darthdaniel85@gmail.com> | 2013-11-18 14:44:44 -0800 |
commit | 85ca63b0896be3d12a098b44b5ec0c65a5b76a6c (patch) | |
tree | 86af33cb199088d65389bfb83cacf94a3db2a88b /framework/Wsat/pages/TWsatLogin.page | |
parent | 7a047bedd98b47a82263e81bf62ef3890947f6ac (diff) |
WSAT Login...
Diffstat (limited to 'framework/Wsat/pages/TWsatLogin.page')
-rw-r--r-- | framework/Wsat/pages/TWsatLogin.page | 53 |
1 files changed, 44 insertions, 9 deletions
diff --git a/framework/Wsat/pages/TWsatLogin.page b/framework/Wsat/pages/TWsatLogin.page index dada4248..b256d719 100644 --- a/framework/Wsat/pages/TWsatLogin.page +++ b/framework/Wsat/pages/TWsatLogin.page @@ -1,9 +1,44 @@ -<com:TContent ID="Content"> - <div> - <com:TLabel Text="Password:" ForControl="password"/> - <com:TTextBox ID="password" /> - </div> - - <br/> - <com:TButton Text="Login" OnClick="login" /> -</com:TContent> +<%@ MasterClass="" %> + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <com:THead Title="PRADO - WSAT"> + <com:TMetaTag HttpEquiv="Content-Type" Content="text/html; charset=utf-8" /> + <com:TMetaTag HttpEquiv="Content-Language" Content="en" /> + </com:THead> + + <body> + <com:TForm> + + <div id="header"> + <a href="<%= $this->Service->DefaultPageUrl %>"> + <div class="logo"></div> + <div style="float: left; margin-top: 17px">PRADO <br /> Web Site Administration Tool</div> + </a> + <div class="mantisbg"></div> + <div style="clear: both"></div> + </div> + + <div class="mainmenu"> + <div style="float: right"><com:THyperLink NavigateUrl="http://www.pradosoft.com/" Text="PradoSoft.com" Target="_blank" /> | </div> + <div style="float: right"><com:THyperLink NavigateUrl="<%= $this->Service->DefaultPageUrl %>" Text="Web App" Target="_blank" /> | </div> + <div style="float: right"><com:THyperLink NavigateUrl="http://www.pradosoft.com/forum/" Text="Help" Target="_blank" /> | </div> + <div style="clear: both"></div> + </div> + + <div class="login_form"> + <com:TLabel Text="Please enter your password:" ForControl="password"/><br/> + <com:TTextBox ID="password" TextMode="Password" style="margin: 5px" /><br/> + <com:TRequiredFieldValidator ControlToValidate="password" Text="Password cannot be blank." /><br/> + + <com:TButton Text="Enter" OnClick="login" /> + </div> + + <div id="footer"> + Copyright © 2005-<%= date('Y') %> <a href="http://www.pradosoft.com">PradoSoft</a>. + <br/><br/> + <%= Prado::poweredByPrado() %> + </div> + </com:TForm> + </body> +</html> |