-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.php
51 lines (47 loc) · 1.79 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
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/theme.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/89178b42f5.js" crossorigin="anonymous"></script>
<title>Contacto</title>
<style>
input, textarea {
width: 80%;
margin: 2%;
padding: 12px 20px;
resize: none;
}
</style>
</head>
<body>
<?php include("nav.php") ?>
<div id="content">
<h1>Contacto</h1>
<p>¿Dudas? ¿sugerencias? ¿ideas? Llena el formulario para ponerte en contacto con el equipo de staff.</p>
<form action="enviar.php" method="POST">
<h3>Nombre/Nick</h3>
<input type="text" name="name">
<h3>Contacto</h3>
<p>¿Cómo podemos contactarte? ¿Email? ¿WhatsApp? ¿Discord?</p>
<input type="text" name="contact">
<h3>Mensaje</h3>
<textarea name="message" id="" cols="30" rows="10"></textarea>
<h3>Tipo</h3>
<select name="tipo" id="tipo">
<option value="Sugerencia">Sugerencia</option>
<option value="Queja">Queja</option>
<option value="Reclamo">Reclamo</option>
<option value="Otro">Otro</option>
</select>
<input type="submit" value="Enviar">
</form>
</div>
<?php include("footer.php") ?>
</body>
</html>