21 lines
508 B
Plaintext
21 lines
508 B
Plaintext
|
<?php
|
||
|
/*
|
||
|
*
|
||
|
*/
|
||
|
?>
|
||
|
<div class="box">
|
||
|
<h1><?=__('dreamjob.image.edit');?></h1>
|
||
|
<?php
|
||
|
$default_Form['type']='file';
|
||
|
echo $this->Form->create('AppUser',$default_Form);
|
||
|
echo $this->Form->input('AppUser.avatar',array('type'=>'file'));
|
||
|
?>
|
||
|
<div class="buttonrow">
|
||
|
<?=$this->Form->button('<span class="glyphicon glyphicon-floppy-disk"></span> '.__('dreamjob.settings.save'),array('div' => false,'class'=>"btn btn-primary ",'type' => 'submit'));?>
|
||
|
</div>
|
||
|
<?php
|
||
|
echo $this->Form->end();
|
||
|
?>
|
||
|
</div>
|
||
|
|