26 lines
693 B
Plaintext
26 lines
693 B
Plaintext
|
<?php
|
||
|
/*
|
||
|
*
|
||
|
*/
|
||
|
?>
|
||
|
<div class="box 2modal">
|
||
|
<h1 class="modal-title">Lola</h1>
|
||
|
<br/>
|
||
|
<div class="modal-body">
|
||
|
<style>
|
||
|
#popup .modal-header .close{
|
||
|
display:none;
|
||
|
}
|
||
|
</style>
|
||
|
</div>
|
||
|
<br/>
|
||
|
<div class="modal-footer">
|
||
|
<?php
|
||
|
if(empty($isLoggedin))
|
||
|
echo $this->Html->link(__('dreamjob.registration.to'),array('controller'=>'registration','action'=>'worker'),array('class'=>'btn btn-primary'));
|
||
|
else
|
||
|
echo $this->Html->link(__('dreamjob.application.extern.to'),array('controller'=>'job','action'=>'applicationSendExt'),array('class'=>'btn btn-primary'));
|
||
|
?>
|
||
|
</div>
|
||
|
</div>
|