Add files via upload

This commit is contained in:
Fernando Méndez
2021-07-02 17:58:01 +02:00
committed by GitHub
parent 842366141c
commit 8a3d41d2d5
78 changed files with 10728 additions and 0 deletions

20
root/contacto/index.php Normal file
View 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</h4>
'.$htmlForm.'
</section>
';
//General page content:
require RAIZ_APP.'/HTMLtemplate.php';
?>