2014-06-01 19:07:41 +02:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
?>
|
2014-06-01 18:24:45 +02:00
|
|
|
<div class="box">
|
2014-06-01 22:46:55 +02:00
|
|
|
<h1><?=__('dreamjob.advertise');?></h1>
|
2014-06-01 18:24:45 +02:00
|
|
|
Sie haben Interesse daran Werbung auf dreamJOB zu schalten ?<br/>
|
|
|
|
Dann wenden Sie sich gerne an unser Team<br/> <br/>
|
|
|
|
Wir lassen Ihnen dann gerne per Mail Angebote zukommen.<br/> <br/>
|
|
|
|
<?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);
|
|
|
|
|
2014-06-01 19:07:41 +02:00
|
|
|
echo $this->Form->input('mail.company',array('placeholder'=>'Unternehmen'));
|
|
|
|
echo $this->Form->input('mail.owner',array('placeholder'=>'Ansprechpartner'));
|
2014-06-01 18:24:45 +02:00
|
|
|
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('type'=>'textarea','placeholder'=>'Nachricht'));
|
|
|
|
?>
|
|
|
|
<div class="buttonrow">
|
|
|
|
<?=$this->Form->button('Abschicken',array('div' => false,'class'=>"btn btn-primary ",'type' => 'submit'));?>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
echo $this->Form->end();
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|