-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrearhilo.php
45 lines (38 loc) · 1.3 KB
/
crearhilo.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Nuevo hilo | RecomenBook</title>
<link rel="icon" type="image/png" href="imagenes/icono.png" sizes="16x16">
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" type="text/css" href="index2.css">
<link rel="stylesheet" type="text/css" href="formulario.css">
</head>
<body>
<?php
require_once("template/header_nav.php");
?>
<!--Formulario para crear un nuevo hilo -->
<section>
<form method="post">
<fieldset>
<legend>Crear nuevo tema</legend>
<article class="form-item-3">
<label for="titulo">Título</label><br>
<input type="text" id="titulo" name="titulo" maxlength="80" required><br>
</article>
<article class="form-item-3">
<label for="mensaje">Mensaje</label>
<textarea id="mensaje" name="mensaje" rows="10" cols="100" maxlength="2000" required></textarea>
</article>
<input type="submit" id="btnEnviarTema" value="Crear tema"><br>
</fieldset>
</form>
</section>
<footer>
<a href="mailto:davidcch@correo.ugr.es">Contacto</a>
<span> - </span>
<a href="como_se_hizo.pdf" target="_blank">Cómo se hizo</a>
</footer>
</body>
</html>