diff options
author | Daniel <darthdaniel85@gmail.com> | 2013-11-22 15:25:30 -0500 |
---|---|---|
committer | Daniel <darthdaniel85@gmail.com> | 2013-11-22 15:25:30 -0500 |
commit | ab6effd64caefa732ef0994d6c3048f5cd474bf6 (patch) | |
tree | 73f4e568295f4d7625fc16af9ce03c58bbbaab2a /framework/Wsat/pages/TWsatLogin.page | |
parent | 85ca63b0896be3d12a098b44b5ec0c65a5b76a6c (diff) |
WSAT beta release.
Diffstat (limited to 'framework/Wsat/pages/TWsatLogin.page')
-rw-r--r-- | framework/Wsat/pages/TWsatLogin.page | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/framework/Wsat/pages/TWsatLogin.page b/framework/Wsat/pages/TWsatLogin.page index b256d719..d0a94f2a 100644 --- a/framework/Wsat/pages/TWsatLogin.page +++ b/framework/Wsat/pages/TWsatLogin.page @@ -29,9 +29,10 @@ <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" /> + <com:TRequiredFieldValidator ControlToValidate="password" ValidationGroup="loginGroup" Text="Password cannot be blank." /><br/> + <com:TCustomValidator ControlToValidate="password" ValidationGroup="loginGroup" OnServerValidate="validatePassword" Text="Incorrect password." /> + + <com:TButton Text="Enter" ValidationGroup="loginGroup" OnClick="login" /> </div> <div id="footer"> |