2012-10-17 07:52:44 +00:00

14 lines
528 B
PHTML

<div id="center">
<h1>Ajout d'un service</h1>
<?php if ($this->error) {?>
<?=$this->error?>
<?php }?>
<div class="paragraph">
<form method="post" action="<?=$this->url(array('controller'=>'dashboard','action'=>'service'),null,true)?>">
<input type="hidden" name="idClient" value="<?=$this->idClient?>"/>
Code <input type="text" name="code" value="<?=$this->code?>" />,
Libellé <input type="text" name="label" value="<?=$this->label?>" />
<input type="submit" name="submit" value="Ajouter" class="button"/>
</form>
</div>
</div>