<?php echo Ext::form_begin(); ?> <?php echo $form->render(); ?> <?php echo Ext::buttons_begin(); echo Ext::submit('submit', 'Ответить', 'Вы уверены?'); echo Ext::buttons_end(); ?> <?php echo Ext::form_end();
<?php defined('SYSPATH') or die('No direct script access.'); /** * @version SVN: $Id:$ */ echo Ext::form_begin($action, $attributes); echo form::hidden($hash_input_name, $hash);
<?php defined('SYSPATH') or die('No direct script access.'); /** * @version SVN: $Id:$ */ echo Ext::form_begin(NULL, array('method' => 'POST')); $form->get_field('password')->set_attributes(array('style' => 'width:150px;')); $form->get_field('password_confirm')->set_attributes(array('style' => 'width:150px;')); echo $form->render(); echo Ext::buttons_begin(); echo Ext::submit('submit', 'Сменить пароль'); echo Ext::buttons_end(); echo Ext::form_end();