-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.php
48 lines (35 loc) · 1.15 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TP FINAL 1</title>
<link rel="stylesheet" href="./estilos.css">
</head>
<body>
<header>
<h1>Suscribite para recibir mas info!</h1>
</header>
<!-- incluyo el archivo conexionDB.php para manejar la interacción con la base de datos -->
<?php include("conexionDB.php"); ?>
<nav>
<a href="index.php">Home</a>
<a href="form.php">Newsletter</a>
</nav>
<main>
<h2>Ingresa tus datos:</h2>
<form action="conexionDB.php" method="post">
<label for="nombre">Nombre:</label>
<input type="text" name="nombre" required>
<label for="signo">Signo Zodiacal:</label>
<input type="text" name="signo" required>
<label for="mail">Correo Electrónico:</label>
<input type="email" name="mail" required>
<button type="submit">Enviar</button>
</form>
</main>
<footer>
<p>© <?php echo date("Y"); ?> TRABAJO PRÁCTICO FINAL</p>
</footer>
</body>
</html>