PHP Classes

File: View/Supports/sendsupport.ctp

Recommend this page to a friend!
  Classes of Andraž   pingvincek   View/Supports/sendsupport.ctp   Download  
File: View/Supports/sendsupport.ctp
Role: Example script
Content type: text/plain
Description: Example script
Class: pingvincek
Manage a site for organizing dates between people
Author: By
Last change:
Date: 6 years ago
Size: 895 bytes
 

Contents

Class file image Download
<p>
Pi?ite nam, ?e:
<ul>
    <li>Potrebujete pomo?</li>
    <li>Imate predlog o izbolj?avi spletne strani</li>
    <li>Bi radi stopili v stik z nami</li>
    <li>Bi radi sodelovali</li>
    <li>Ste odkrili napako</li>
</ul>
</p>
<?php

echo $this->Form->create('Support', array('class' => 'formStyle', 'default' => FALSE));

if (!
$isLoggedIn)
{
    echo
$this->Form->input('email', array('label' => 'E-mail', 'style' => 'width: 100%;'));
}
echo
$this->Form->input('subject', array('label' => 'Zadeva', 'style' => 'width: 100%;'));
echo
$this->Form->input('message', array('type' => 'textarea', 'label' => 'Sporo?ilo', 'style' => 'width: 97%; height: 150px;'));

echo
$this->Js->submit('Dodaj', array('style' => 'display: none;', 'url' => array('controller' => 'supports', 'action' => 'sendsupport'), 'update' => '#tmpForm', 'id' => 'dodajBTN'));
echo
$this->Form->end();

echo
$this->Js->writeBuffer();
?>