dreamjob/app/View/User/settings_imageUpload.ctp

21 lines
603 B
Plaintext
Raw Normal View History

2014-04-15 19:47:57 +02:00
<?php
/*
*
*/
?>
<div class="box">
<h1><?=__('dreamjob.image.edit');?></h1>
<?php
$default_Form['type']='file';
echo $this->Form->create('AppUser',$default_Form);
2014-05-01 11:52:39 +02:00
echo $this->Form->input('AppUser.avatar',array('type'=>'file','label'=>array('text'=>__("dreamjob.avatar"),"class"=>$default_Form['inputDefaults']['label']['class'])));
2014-04-15 19:47:57 +02:00
?>
<div class="buttonrow">
2014-06-03 16:51:20 +02:00
<?=$this->Form->button('<span class="glyphicon glyphicon-floppy-disk"></span> '.__('dreamjob.save'),array('div' => false,'class'=>"btn btn-primary ",'type' => 'submit'));?>
2014-04-15 19:47:57 +02:00
</div>
<?php
echo $this->Form->end();
?>
</div>