Changeset 96 for devel/www/index.php
- Timestamp:
- Jul 31, 2008, 12:09:43 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/www/index.php
r87 r96 262 262 } 263 263 if($_GET['Action'] == 'UserRegister') 264 { 264 { 265 265 $UserRegister = new Form('UserRegister'); 266 266 $UserRegister->OnSubmit = '?Action=UserRegisterSave'; 267 267 $Output .= $UserRegister->ShowEditForm(); 268 268 } else 269 if($_GET['Action'] == 'PasswordRecovery') 270 { 271 $Form = new Form('PasswordRecovery'); 272 $Form->OnSubmit = '?Action=PasswordRecovery2'; 273 $Output .= $Form->ShowEditForm(); 274 } else 275 if($_GET['Action'] == 'PasswordRecovery2') 276 { 277 $Form = new Form('PasswordRecovery'); 278 $Form->LoadValuesFromForm(); 279 280 $Output .= $this->SystemMessage('Obnova hesla', $this->System->Modules['User']->PasswordRecoveryRequest($Form->Values['Name'], $Form->Values['Email'])); 281 } else 282 if($_GET['Action'] == 'PasswordRecoveryConfirm') 283 { 284 $Output .= $this->SystemMessage('Obnova hesla', $this->System->Modules['User']->PasswordRecoveryConfirm($_GET['User'], $_GET['H'], $_GET['P'])); 285 } else 269 286 if($_GET['Action'] == 'UserRegisterSave') 270 { 287 { 271 288 $UserRegister = new Form('UserRegister', array()); 272 289 $UserRegister->LoadValuesFromForm();
Note:
See TracChangeset
for help on using the changeset viewer.