ACC SHELL

Path : /var/lib/named/proc/self/root/srv/www/vhosts/tsisystem/app/views/customers/
File Upload :
Current File : //var/lib/named/proc/self/root/srv/www/vhosts/tsisystem/app/views/customers/edit.thtml

<h2>Edit Customer</h2>
<form action="<?php echo $html->url('/customers/edit/'.$html->tagValue('Customer/id')); ?>" method="post">
<div class="optional"> 
	<?php echo $form->label('Customer/logname', 'Logname');?>
 	<?php echo $html->input('Customer/logname', array('size' => '60'));?>
	<?php echo $html->tagErrorMsg('Customer/logname', 'Please enter the logname.');?>
</div>
<div class="optional"> 
	<?php echo $form->label('Customer/pass', 'Pass');?>
 	<?php echo $html->input('Customer/pass', array('size' => '60'));?>
	<?php echo $html->tagErrorMsg('Customer/pass', 'Please enter the pass.');?>
</div>
<div class="optional"> 
	<?php echo $form->label('Customer/firm', 'Firm');?>
 	<?php echo $html->input('Customer/firm', array('size' => '60'));?>
	<?php echo $html->tagErrorMsg('Customer/firm', 'Please enter the firm.');?>
</div>
<div class="optional"> 
	<?php echo $form->label('Customer/real_name', 'Real Name');?>
 	<?php echo $html->input('Customer/real_name', array('size' => '60'));?>
	<?php echo $html->tagErrorMsg('Customer/real_name', 'Please enter the real_name.');?>
</div>
<div class="optional"> 
	<?php echo $form->label('Customer/email', 'Email');?>
 	<?php echo $html->input('Customer/email', array('size' => '60'));?>
	<?php echo $html->tagErrorMsg('Customer/email', 'Please enter the email.');?>
</div>
<div class="optional"> 
	<?php echo $form->label('Customer/address', 'Address');?>
 	<?php echo $html->input('Customer/address', array('size' => '60'));?>
	<?php echo $html->tagErrorMsg('Customer/address', 'Please enter the address.');?>
</div>
<div class="optional"> 
	<?php echo $form->label('Customer/phone', 'Phone');?>
 	<?php echo $html->input('Customer/phone', array('size' => '60'));?>
	<?php echo $html->tagErrorMsg('Customer/phone', 'Please enter the phone.');?>
</div>
<div class="optional"> 
	<?php echo $form->label('Customer/fax', 'Fax');?>
 	<?php echo $html->input('Customer/fax', array('size' => '60'));?>
	<?php echo $html->tagErrorMsg('Customer/fax', 'Please enter the fax.');?>
</div>
<div class="optional"> 
	<?php echo $form->label('Customer/interest', 'Interest');?>
 	<?php echo $html->input('Customer/interest', array('size' => '60'));?>
	<?php echo $html->tagErrorMsg('Customer/interest', 'Please enter the interest.');?>
</div>
<div class="optional"> 
	<?php echo $form->label('Customer/hash', 'Hash');?>
 	<?php echo $html->input('Customer/hash', array('size' => '60'));?>
	<?php echo $html->tagErrorMsg('Customer/hash', 'Please enter the hash.');?>
</div>
<?php echo $html->hidden('Customer/id')?>
<div class="submit">
	<?php echo $html->submit('Save');?>
</div>
</form>
<ul class="actions">
	<li><?php echo $html->link('List customers', '/customers/index')?></li>
</ul>

ACC SHELL 2018