View file Web Template Ktpl/package/templates/ktpl/controllers/users/profile_edit_password.tpl.php

File size: 829B
<?php

    $this->setPageTitle(LANG_CHANGE_PASS);

    $this->addBreadcrumb(LANG_USERS, href_to('users'));
    $this->addBreadcrumb($profile['nickname'], href_to('users', $id));
    $this->addBreadcrumb(LANG_USERS_EDIT_PROFILE, href_to('users', $id, 'edit'));
    $this->addBreadcrumb(LANG_CHANGE_PASS);

    $this->addToolButton(array(
        'class' => 'save',
        'title' => LANG_SAVE,
        'href'  => "javascript:icms.forms.submit()"
    ));

    $this->addToolButton(array(
        'class' => 'cancel',
        'title' => LANG_CANCEL,
        'href'  => href_to('users', $id)
    ));


?>

<?php $this->renderChild('profile_edit_header', array('profile'=>$profile)); ?>

<?php
    $this->renderForm($form, $data, array(
        'action' => '',
        'method' => 'post',
        'toolbar' => false
    ), $errors);