Add files via upload
This commit is contained in:
20
contacto/index.php
Normal file
20
contacto/index.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
//General Config File:
|
||||
require_once('../assets/php/config.php');
|
||||
|
||||
//Contact form:
|
||||
require_once('includes/formContact.php');
|
||||
$form = new FormContact();
|
||||
$htmlForm = $form->gestiona();
|
||||
|
||||
//Specific page content:
|
||||
$section = '<!-- Contact Form -->
|
||||
<section id="formulario">
|
||||
<h4>Formulario (EN DESARROLLO)</h4>
|
||||
'.$htmlForm.'
|
||||
</section>
|
||||
';
|
||||
|
||||
//General page content:
|
||||
require RAIZ_APP.'/HTMLtemplate.php';
|
||||
?>
|
Reference in New Issue
Block a user