28 lines
1.1 KiB
PHP
28 lines
1.1 KiB
PHP
<?php
|
|
/*
|
|
*
|
|
*/
|
|
?>
|
|
<div class="box">
|
|
Kontaktformular für unsere Kunden:
|
|
<?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('type'=>'textarea','placeholder'=>'Nachricht'));
|
|
?>
|
|
<div class="buttonrow">
|
|
<?=$this->Form->button('senden',array('div' => false,'class'=>"btn btn-primary ",'type' => 'submit'));?>
|
|
</div>
|
|
<?php
|
|
echo $this->Form->end();
|
|
?>
|
|
</div>
|