summaryrefslogtreecommitdiff
path: root/app/php/pages
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-03-10 17:14:25 +0100
committeremkael <emkael@tlen.pl>2016-03-10 17:14:25 +0100
commit48619109291ed90bd0e11f4be27384ca7a95ddf4 (patch)
tree5ca3d127e03b0dcaf8007257c59332c909523afc /app/php/pages
parentbb786c1e19aeaa44b81b47265a284e8737c09e65 (diff)
* registration form as a component
Diffstat (limited to 'app/php/pages')
-rw-r--r--app/php/pages/Signup.page60
-rw-r--r--app/php/pages/Signup.php26
2 files changed, 1 insertions, 85 deletions
diff --git a/app/php/pages/Signup.page b/app/php/pages/Signup.page
index b8ce6bd..da863d4 100644
--- a/app/php/pages/Signup.page
+++ b/app/php/pages/Signup.page
@@ -1,61 +1,3 @@
<com:TContent ID="Content">
- Username:
- <com:TTextBox ID="Login"
- ValidationGroup="SignupGroup" />
- <com:TRequiredFieldValidator
- ControlToValidate="Login"
- Display="Dynamic"
- ErrorMessage="Username cannot be empty"
- ValidationGroup="SignupGroup" />
- <com:TRegularExpressionValidator
- ControlToValidate="Login"
- RegularExpression="[a-zA-Z0-9_]{6,255}"
- Display="Dynamic"
- ErrorMessage="Username must contain 6-255 characters, all Latin alphanumeric or underscore"
- ValidationGroup="SignupGroup" />
- <com:TCustomValidator
- ControlToValidate="Login"
- OnServerValidate="checkUsername"
- Display="Dynamic"
- ErrorMessage="Username already exists"
- ValidationGroup="SignupGroup" />
- <br />
- Password:
- <com:TTextBox ID="Password"
- TextMode="Password"
- ValidationGroup="SignupGroup" />
- <com:TRequiredFieldValidator
- ControlToValidate="Password"
- Display="Dynamic"
- ErrorMessage="Password cannot be empty"
- ValidationGroup="SignupGroup" />
- <br />
- Repeat password:
- <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"
- DataType="String"
- Operator="Equal"
- Display="Dynamic"
- ErrorMessage="Passwords don't match"
- ValidationGroup="SignupGroup" />
- <br />
- Admin:
- <com:TCheckBox ID="Admin"
- ValidationGroup="SignupGroup" />
- <br />
- <com:TButton
- Text="Create"
- OnCommand="registerUser"
- ValidationGroup="SignupGroup" />
- <com:TValidationSummary
- ValidationGroup="SignupGroup" />
+ <com:RegistrationForm />
</com:TContent>
diff --git a/app/php/pages/Signup.php b/app/php/pages/Signup.php
deleted file mode 100644
index e989eb6..0000000
--- a/app/php/pages/Signup.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-Prado::using('Application.model.User');
-
-class Signup extends TPage {
-
- public function checkUsername($sender, $param) {
- $param->IsValid = !User::finder()->countByLogin($this->Login->SafeText);
- }
-
- public function registerUser($sender, $param) {
- if ($this->Page->IsValid) {
- $newUser = new User();
- $newUser->Login = $this->Login->SafeText;
- $newUser->Password = DbUser::generatePassword($this->Password->Text);
- $newUser->IsAdmin = $this->Admin->Checked;
- $newUser->save();
- $this->Response->redirect(
- $this->Service->constructUrl(NULL)
- );
- }
- }
-
-}
-
-?>