ACC SHELL

Path : /srv/www/vhosts/tsisystem/app/views/users/
File Upload :
Current File : //srv/www/vhosts/tsisystem/app/views/users/edit.thtml

<h1>Edit user</h1>
<form action="<?php echo $html->url('/users/edit/'.$users['User']['id'].''); ?>" method="post">
<div class="optional"> 
	<label for="user_logname">Logname</label>
 	<?php echo $html->input('User/logname', array('id' => 'user_logname', 'size' => '40', 'value' => $users['User']['logname'], )) ?>
	<?php echo $html->tagErrorMsg('User/logname', 'Error message for logname goes here.') ?>
</div>
<div class="optional"> 
	<label for="user_pass">Pass</label>
 	<?php echo $html->input('User/pass', array('id' => 'user_pass', 'size' => '40', 'value' => $users['User']['pass'], )) ?>
	<?php echo $html->tagErrorMsg('User/pass', 'Error message for pass goes here.') ?>
</div>
<div class="optional"> 
	<label for="user_firm">Firm</label>
 	<?php echo $html->input('User/firm', array('id' => 'user_firm', 'size' => '40', 'value' => $users['User']['firm'], )) ?>
	<?php echo $html->tagErrorMsg('User/firm', 'Error message for firm goes here.') ?>
</div>
<div class="optional"> 
	<label for="user_real_name">Real Name</label>
 	<?php echo $html->input('User/real_name', array('id' => 'user_real_name', 'size' => '40', 'value' => $users['User']['real_name'], )) ?>
	<?php echo $html->tagErrorMsg('User/real_name', 'Error message for real_name goes here.') ?>
</div>
<div class="optional"> 
	<label for="user_email">Email</label>
 	<?php echo $html->input('User/email', array('id' => 'user_email', 'size' => '40', 'value' => $users['User']['email'], )) ?>
	<?php echo $html->tagErrorMsg('User/email', 'Error message for email goes here.') ?>
</div>
<div class="optional"> 
	<label for="user_address">Address</label>
 	<?php echo $html->input('User/address', array('id' => 'user_address', 'size' => '40', 'value' => $users['User']['address'], )) ?>
	<?php echo $html->tagErrorMsg('User/address', 'Error message for address goes here.') ?>
</div>
<div class="optional"> 
	<label for="user_phone">Phone</label>
 	<?php echo $html->input('User/phone', array('id' => 'user_phone', 'size' => '40', 'value' => $users['User']['phone'], )) ?>
	<?php echo $html->tagErrorMsg('User/phone', 'Error message for phone goes here.') ?>
</div>
<div class="optional"> 
	<label for="user_fax">Fax</label>
 	<?php echo $html->input('User/fax', array('id' => 'user_fax', 'size' => '40', 'value' => $users['User']['fax'], )) ?>
	<?php echo $html->tagErrorMsg('User/fax', 'Error message for fax goes here.') ?>
</div>
<div class="optional"> 
	<label for="user_interest">Interest</label>
 	<?php echo $html->input('User/interest', array('id' => 'user_interest', 'size' => '40', 'value' => $users['User']['interest'], )) ?>
	<?php echo $html->tagErrorMsg('User/interest', 'Error message for interest goes here.') ?>
</div>
<?php echo $html->hidden('User/id', array('value' => $users['User']['id']))?><div class="submit"><input type="submit" value="Save" /></div>
</form>
<ul>
	<li><?php echo $html->link('List users', '/users/index')?></li>
</ul>

ACC SHELL 2018