-
Notifications
You must be signed in to change notification settings - Fork 0
/
subscription.php
66 lines (57 loc) · 1.92 KB
/
subscription.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
$language = trim($_GET['lang']);
if ($language == "es")
include("Languages/es.php");
else if ($language == "fr")
include("Languages/fr.php");
else{
include("Languages/en.php");
}
?>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>María Tamames - Subscripción</title>
<?php include ("Structure/Head.html");?>
</head>
<body>
<div id="contentLayer">
<div id="logoLayer">
<?php include("Structure/Logo.html");?>
</div>
<div id="capaLinks">
<?php include("Structure/Links.html");?>
</div>
<div id="Menu">
<table id="tableMenu">
<tr>
<td id="botonMenuSeleccionado"><a href="main?lang=<?php echo $language;?>"><?php echo element1;?></a></td>
<td><span class="space">/</span></td>
<td><a href="Bio?lang=<?php echo $language;?>"><?php echo element3;?></a></td>
<td><span class="space">/</span></td>
<td><a href="Projects?lang=<?php echo $language;?>"><?php echo element2;?></a></td>
<td><span class="space">/</span></td>
<td><a href="CollaborationsWoman?lang=<?php echo $language;?>"><?php echo element5;?></a></td>
<td><span class="space">/</span></td>
<td><a target="_blank" href="http://mariatamames.tumblr.com/"><?php echo element4;?></a></td>
</tr>
</table>
<!--fin lista menu -->
</div>
<!-- fin menu -->
<div id="capaCentro">
<div id="textLayer">
<p class="text">Formulario de Subscripción</p>
</div>
<!-- fin capa texto -->
<div id="footerLayer">
<?php include("Structure/Footer.html");?>
</div>
<!-- fin capa pie pagina -->
</div>
<!-- fin capa centro -->
</div>
<!-- fin capa contenido -->
</body>
</html>