summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-03-10 16:26:38 +0100
committeremkael <emkael@tlen.pl>2016-03-10 16:26:38 +0100
commit244aed5334194dd11e86541ec11445c72f70e1e8 (patch)
tree433c3bcac72c6cec7d553b7c41456c72a874182e
parentdc6b46f32874ad97ef2c644a824ac3dc16382586 (diff)
* new user password validation fix
-rw-r--r--app/php/pages/Signup.page5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/php/pages/Signup.page b/app/php/pages/Signup.page
index 30c382d..b8ce6bd 100644
--- a/app/php/pages/Signup.page
+++ b/app/php/pages/Signup.page
@@ -34,6 +34,11 @@
<com:TTextBox ID="RePassword"
TextMode="Password"
ValidationGroup="SignupGroup" />
+ <com:TRequiredFieldValidator
+ ControlToValidate="RePassword"
+ Display="Dynamic"
+ ErrorMessage="Password cannot be empty"
+ ValidationGroup="SignupGroup" />
<com:TCompareValidator
ControlToValidate="RePassword"
ControlToCompare="Password"