|
Revision 877, 0.8 kB
(checked in by aarkerio, 3 weeks ago)
|
|
Wikis new class model
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | echo $gags->imgLoad('charging2'); |
|---|
| 3 | |
|---|
| 4 | echo $ajax->div('updater') . $ajax->divEnd('updater'); |
|---|
| 5 | |
|---|
| 6 | $tmp = $ajax->form(); |
|---|
| 7 | |
|---|
| 8 | $tmp .= '<fieldset><legend>'.__('Recover password', true).':</legend>'; |
|---|
| 9 | $tmp .= $html->para(null, __('Type the email used on your account', true)); |
|---|
| 10 | $tmp .= $form->input('User.email', array('size' => 30, 'maxlength' => 50, 'value'=>'@', 'between'=>': ')); |
|---|
| 11 | |
|---|
| 12 | $tmp .= $ajax->submit(__('Send', true), array("url" => "/recovers/confirm/", |
|---|
| 13 | "update"=>"updater", |
|---|
| 14 | "loading" => "Element.show('charging2');Element.hide('updater')", |
|---|
| 15 | "complete" => "Element.hide('charging2');Effect.Appear('updater')" |
|---|
| 16 | )); |
|---|
| 17 | $tmp .= '</fieldset></form>'; |
|---|
| 18 | |
|---|
| 19 | echo $html->div('spaced', $tmp, array('id'=>'form_register')); |
|---|
| 20 | ?> |
|---|