-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.php
49 lines (45 loc) · 1.44 KB
/
contacto.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
session_start();
if (!isset($_SESSION['id_cliente'])) {
// header('Location: index.php');
}
?>
<!DOCTYPE html>
<head>
<title>Contacto</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<style>
/* Sección de Contacto */
body, html {
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
}
</style>
</head>
<body>
<header>
<!-- Menú de navegación -->
<?php include 'menu_navegacion.php'; ?>
</header>
<!-- Sección de Contacto -->
<section class="contacto">
<h2>Contáctanos</h2>
<form action="recibe.php" method="POST">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" required>
<label for="correo">Correo:</label>
<input type="email" id="correo" name="correo" required>
<label for="comentario">Comentario:</label>
<textarea id="comentario" name="comentario" rows="4" required></textarea>
<button type="submit">Enviar</button>
</form>
</section>
<div style="flex: 1;"></div>
<!-- Footer -->
<footer>
<?php include 'pie_de_pagina.php'; ?>
</footer>
</body>
</html>