-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.php
80 lines (80 loc) · 2.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
require_once(dirname(__FILE__) . '/header.php');
?>
<div class="bordes">
<table width="100%" height="365" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<td width="5" align="center"></td>
<td height="35%" align="left" valign="top">
<div align="center" class="size15">
<b>Contacto</b><br /><br />
</div>
<div class="size11" style="margin-left: 30px;">
Ante cualquier problema, recomendación, sugerencia, crítica, etc. puedes recurrir a cualquiera de nuestros miembros del staff.<br />
Se dispondrá de una casilla de correo a la cual podrás dirigirte. Si eres un usuario registrado, puedes utilizar los mensajes del sitio.<br />
También podrás dirigirte al correo de contacto de <?php echo $name; ?>: <a href="mailto:<?php echo $email; ?>"><?php echo $email; ?></a>.
<br /><br />
<table style="font-size: 12px;">
<tbody>
<tr>
<td colspan="3" style="font-weight: bold;">
Administradores
</td>
</tr>
<tr>
<td width="200">
gonza1988
</td>
<td>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
<tr>
<td>
cha
</td>
<td>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
<tr>
<td>
nisiquieraunaparte
</td>
<td>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
<tr>
<td colspan="23" style="padding-top: 20px; font-weight: bold;">
Moderadores
</td>
</tr>
<tr>
<td>
fidoqac
</td>
<td>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
<tr>
<td>
nikPalu
</td>
<td>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
<?php
require_once(dirname(__FILE__) . '/footer.php');
?>
</div>