-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.html
101 lines (94 loc) · 2.33 KB
/
contact-us.html
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!-- @include _top.html -->
<!-- @include _masthead.html -->
<!-- @todo ask client if they prefer to be contacted via form or phone -->
<div class="row">
<h3>Contact Us</h3>
<div class="large-12 columns">
<p class="panel">
<b>Please Note:</b> Our services are only available to youths and families who are assigned to us from the court system.
</p>
</div>
<div class="large-4 columns push-8">
<section>
<h4>Locations</h4>
<section>
<h5>Cambridge Site<br/>(Administrative Office)</h5>
<p>
Cambridge Juvenile Court Clinic<br/>
189 Cambridge Street<br/>
Cambridge, MA 02141<br/>
p: 617-494-0135<br/>
f: 617-494-0136
</p>
</section>
<section>
<h5>Lowell Site</h5>
<p>
Lowell Juvenile Court Clinic<br/>
89 Appleton Street<br/>
Lowell, MA 01852<br/>
p: 978-275-6466<br/>
f: 978-275-0728
</p>
</section>
<section>
<h5>Framingham Site</h5>
<p>
Framingham Juvenile Court Clinic<br/>
110 Mt. Wayte Avenue<br/>
Framingham, MA 01702<br/>
p: 508-270-1057<br/>
f: 508-879-4121
</p>
</section>
<section>
<h5>Waltham Juvenile Curt</h5>
<p>
Waltham Juvenile Court<br/>
58 Linden Street<br/>
Waltham, MA 02452<br/>
p: 781-899-7672<br/>
f: 781-894-2356
</p>
</section>
</section>
</div>
<div class="large-8 pull-4 columns">
<form id="contact-form">
<fieldset>
<legend>Your Information</legend>
<div class="row">
<div class="large-12 columns">
<label>Name*</label>
<input type="text" >
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Email*</label>
<input type="text" >
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Phone Number*</label>
<input type="text" >
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Message*</label>
<textarea></textarea>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<input type="submit" class="button" value="Send">
</div>
</div>
</fieldset>
</form>
</div>
</div>
<!-- @include _footer.html -->
<!-- @include _bottom.html -->