shell bypass 403
<aside class="formulario">
<h3>Contacta con Altamira 21</h3>
<?php echo $this->Form->create('Contacto', array('url' => $url, 'class' => 'form form-background', 'role' => 'form')) ?>
<?php echo $this->Alertas->getAlertas($errores, $btnClose, $this->Session->flash('contacto')) ?>
<?php echo $this->Form->input('nombre', array('label' => false, 'placeholder' => 'Nombre y Apellidos', 'type' => 'text', 'errorMessage' => false, 'format' => array('before', 'between', 'input', 'after', 'label', 'error'))) ?>
<?php echo $this->Form->input('email', array('label' => false, 'placeholder' => 'Email', 'type' => 'text', 'errorMessage' => false, 'format' => array('before', 'between', 'input', 'after', 'label', 'error'))) ?>
<?php echo $this->Form->input('telefono', array('label' => false, 'placeholder' => 'Teléfono', 'type' => 'text', 'errorMessage' => false, 'format' => array('before', 'between', 'input', 'after', 'label', 'error'))) ?>
<?php echo $this->Form->input('observaciones', array('label' => false, 'placeholder' => 'Comentarios...', 'type' => 'textarea', 'errorMessage' => false, 'format' => array('before', 'between', 'input', 'after', 'label', 'error'))) ?>
<div class="text-center">
<?php echo $this->Form->button('Más información', array('type' => 'submit', 'class' => 'btn btn-small')) ?>
</div>
<div class="checks clearfix">
<div class="checkbox clearfix">
<?php echo $this->Form->checkbox('condiciones_uso') ?>
<?php echo $this->Form->label('condiciones_uso', '<span></span>He leído y acepto las ' . $this->Html->link('condiciones de uso', array('controller' => 'pages', 'action' => 'condicionesDeUso'), array('target' => '_blank')) . ' de mis datos personales.', array('class' => (array_key_exists('condiciones_uso', $errores)) ? 'error' : '')) ?>
</div>
</div>
<?php echo $this->Form->end() ?>
</aside>