41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
|
<?php
|
||
|
/*
|
||
|
*
|
||
|
*/
|
||
|
$avatar = false;
|
||
|
if($profil['AppUser']['take_systemwide']){
|
||
|
if($profil['User']['avatar'])
|
||
|
$avatar = true;
|
||
|
}else{
|
||
|
if($profil['AppUser']['avatar'])
|
||
|
$avatar = true;
|
||
|
}
|
||
|
?>
|
||
|
<div class="box">
|
||
|
<?php
|
||
|
if(!empty($WORKER) and count($WORKER)>0){
|
||
|
?>
|
||
|
<div class="tabs-below">
|
||
|
<ul class="nav nav-tabs pull-right">
|
||
|
<li class="active"><?=$this->Html->link(__("dreamjob.settings"),array('controller'=>'user','action'=>'settings'));?></li>
|
||
|
<li><?=$this->Html->link(__("dreamjob.settings.isearch"),array('controller'=>'user','action'=>'isearch'));?></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<?php
|
||
|
}
|
||
|
|
||
|
echo $this->Form->create('DreamjobJobApplication',$default_Form);
|
||
|
?>
|
||
|
<h1><?=__("dreamjob.settings");?></h1>
|
||
|
<fieldset>
|
||
|
<legend><?=__("dreamjob.account");?></legend>
|
||
|
<?php
|
||
|
echo $this->Form->input('User.mail',array('label'=>array('text'=>__("dreamjob.title"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
||
|
?>
|
||
|
<div class="buttonrow">
|
||
|
<?=$this->Form->button(__('dreamjob.application.send'),array('div' => false,'class'=>"btn btn-default ",'type' => 'submit'));?>
|
||
|
</div>
|
||
|
</fieldset>
|
||
|
<?php echo $this->Form->end(); ?>
|
||
|
</div>
|