dreamjob/app/View/Home/company.ctp

63 lines
2.1 KiB
PHP

<?php
/*
*
*/
?>
<div class="box start-search-box">
<div class="img">
<?=$this->Html->image('start-company.jpg'); ?>
<?=$this->Html->link(__('dreamjob.registration.to'),array('controller'=>'search', 'action'=>'opening'),array("class" => "btn btn-primary"));?>
</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/>
<?=$this->Html->image('start-company-broschuere.jpg'); ?>
</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">
<?=$this->Form->button(__('dreamjob.application.send'),array('div' => false,'class'=>"btn btn-primary ",'type' => 'submit'));?>
</div>
<?php
echo $this->Form->end();
?>
</div>
</div>