-
Notifications
You must be signed in to change notification settings - Fork 4
/
contact_box.php
81 lines (74 loc) · 1.91 KB
/
contact_box.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
81
<div id="contact_box">
<div style="background-color: #4C70A0; color: white;">Contact Thefacebook</div>
<h1 style="text-align: center;">[ Contact ]</h1>
<div id="contact_boxes">
<div style="background-color: #4C70A0; color: white; ">Suggest a New School</div>
<p>
Suggest a new school to be added to the facebook network. If you provide us with your email address, we will notify you when the school is added.
</p>
<form action="mailto:[email protected]?subject=New School" method="post" enctype="text/plain">
<table>
<tr>
<td>New School:
</td>
<td><input type="text" name="school" />
</tr>
<tr>
<td>Email (optional):
</td>
<td><input type="text" name="email" />
</td>
</tr>
<tr>
<td colspan="2" style="text-align: center;"><div id="fb_button"><input type="submit" value="Submit" name="submit" /></div>
</td>
</tr>
</table>
</form>
</div>
<div id="contact_boxes">
<div style="background-color: #4C70A0; color: white; ">Email</div>
<p>
<table id="contact_links" style="margin-bottom: 40px">
<tr>
<td><b>Information/Support:</b>
</td>
<td><a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
<tr>
<td>
<b>Suggestions/Requests</b>
</td>
<td>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
<tr>
<td>
<b>Business Development:</b>
</td>
<td>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
<tr>
<td>
<b>Press Inquiries:</b>
</td>
<td>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
<tr>
<td>
<b>Advertising:</b>
</td>
<td>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
</table>
</p>
</div>
</div>