dreamjob/app/View/Home/company.ctp

69 lines
2.5 KiB
Plaintext
Raw Normal View History

2014-05-02 19:10:28 +02:00
<?php
/*
*
*/
?>
<div class="box start-search-box">
<div class="img">
<?=$this->Html->image('start-company.jpg'); ?>
2014-05-12 12:53:26 +02:00
<?php
2014-05-12 16:16:51 +02:00
if(empty($isLoggedin))
2014-05-12 12:53:26 +02:00
echo $this->Html->link(__('dreamjob.registration.to'),array('controller'=>'registration', 'action'=>'company'),array("class" => "btn btn-primary"));
?>
2014-05-02 19:10:28 +02:00
</div>
<div class="bluebox">
Stellen ausschreiben<br/>
Unternehmen darstellen <br/>
Bewerbungen verwalten
</div>
</div>
<div class="box" style="font-size:22px;">
Die Plattform für Ihr komplettes Ausschreibungsverfahren!<br/>
&uuml;bersichtlich - bequem - flexibel
<ul>
<li>einfaches Verwaltungssystem von A wie Ausschreibung bis Z wie Zielgruppe</li>
<li>Sammlung der Bewerbungsunterlagen im vereinheitlichn Format</li>
<li>stufenweise Auswertung nach verschiedenen Kategorien</li>
</ul>
</div>
<div class="columns" style="margin-bottom:20px;">
<div class="box bar" style="width:300px;font-size:16px;">
Unser Prospekt für Arbeitgeber<br/>
<br/>
- Unser kostenloses Angebot<br/>
- was dreamJOB Ihnen bietet<br/>
<br/>
2014-05-06 17:34:41 +02:00
2014-05-12 12:53:26 +02:00
<?=$this->Html->link($this->Html->image('start-company-broschuere.jpg'),$this->Html->url('/files/dreamJOBinfo.pdf'),array('ref' => 'eventOff','escape'=>false,'target'=>'_blank'));?>
2014-05-12 16:35:09 +02:00
<?=$this->Html->link($this->Html->image('start-company-job4u.jpg',array('style'=>'margin-top:40px;')),$this->Html->url('https://job4u-praktikum.de/'),array('ref' => 'external','escape'=>false,'target'=>'_blank'));?>
2014-05-02 19:10:28 +02:00
</div>
<div class="bar" style="width:20px;"></div>
<div class="box bar" style="font-size:16px;">
Bei Fragen kontaktieren Sie gerne unser Service-Team
<?php
$default_Form['inputDefaults']['div'] = array('style' => 'margin-top:15px;');
$default_Form['inputDefaults']['between']=false;
$default_Form['inputDefaults']['after']=false;
$default_Form['inputDefaults']['label']=false;
echo $this->Form->create(null,$default_Form);
echo $this->Form->input('mail.last_name',array('placeholder'=>'Name'));
echo $this->Form->input('mail.first_name',array('placeholder'=>'Vorname'));
echo $this->Form->input('mail.adresse',array('placeholder'=>'E-Mail'));
echo $this->Form->input('mail.subject',array('placeholder'=>'Betreff'));
echo $this->Form->input('mail.text',array('placeholder'=>'Nachricht'));
?>
<div class="buttonrow">
2014-05-06 16:53:47 +02:00
<?=$this->Form->button('senden',array('div' => false,'class'=>"btn btn-primary ",'type' => 'submit'));?>
2014-05-02 19:10:28 +02:00
</div>
<?php
echo $this->Form->end();
?>
</div>
</div>