-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacto.php
More file actions
24 lines (24 loc) · 903 Bytes
/
contacto.php
File metadata and controls
24 lines (24 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contacto</title>
<link rel="icon" href="img/logo.ico" type="image/x-icon">
<link rel="stylesheet" href="css/estilos.css">
<link rel="stylesheet" href="css/fontawesome/css/all.min.css">
</head>
<?php
require_once 'vista/header.php';
?>
<form action="" method="POST" id="login">
<h1>Contacto</h1>
<input type="text" id="nombre" name="nombre" placeholder="Nombre" required>
<input type="email" id="email" name="email" placeholder="Email" required>
<textarea id="mensaje" name="mensaje" placeholder="Mensaje" required cols="30" rows="10"></textarea>
<button type="submit">Enviar</button>
</form>
<?php
require_once 'vista/footer.php';
?>
</html>