-
Notifications
You must be signed in to change notification settings - Fork 7
/
contact.html
126 lines (117 loc) · 3.24 KB
/
contact.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
---
title: Contact
subtitle: We'd love to hear from you!
layout: page
redirect_from:
- /website/contact.html
---
{% capture right_column %}
## Address
<address>
The Beauty and Joy of Computing<br />
777 Soda Hall<br />
Berkeley, CA 94720
</address>
## Email Address
[{{ site.email }}](mailto:{{ site.email }})
## Social Profiles
<div class="col-xs-12 social-icons">
<a href="https://twitter.com/{{site.twitter_username}}" aria-label="BJC Twitter">
<i class="fa fa-twitter-square fa-2x" aria-hidden=true></i>
</a>
<a href="https://facebook.com/{{site.facebook_username}}" aria-label="BJC Facebook">
<i class="fa fa-facebook-square fa-2x" aria-hidden="true"></i>
</a>
<a href="https://instagram.com/{{site.instagram_username}}" aria-label="BJC Instagram">
<i class="fa fa-instagram fa-2x" aria-hidden="true"></i>
</a>
</div>
{% endcapture %}
{% capture section_content %}
<div class="row">
<div class="col-md-8 col-sm-6 col-xs-12">
<div class="js-submitMessageTarget"></div>
<h2>Send a message</h2>
<form class="js-contactForm">
<div class="form-group">
<label class="control-label requiredField" for="name">
Name <span>*</span>
</label>
<input
class="form-control"
id="name"
name="name"
type="text"
required
/>
</div>
<div class="form-group">
<label class="control-label requiredField" for="email">
Email Address <span>*</span>
</label>
<input
class="form-control"
id="email"
name="email"
type="email"
required
/>
</div>
<div class="form-group">
<label class="control-label" for="school_name">
With which school(s) are you associated?
</label>
<input
class="form-control"
id="school_name"
name="school_name"
type="text"
/>
</div>
<div class="form-group">
<label class="control-label" for="role">
What is your role?
</label>
<select class="select form-control" id="role" name="role">
<option value="Teacher">Teacher</option>
<option value="Administrator">Administrator</option>
<option value="Parent">Parent</option>
<option value="Other">Other</option>
</select>
</div>
<div class="form-group">
<label class="control-label requiredField" for="subject">
Subject <span>*</span>
</label>
<input
class="form-control"
id="subject"
name="subject"
type="text"
required
/>
</div>
<div class="form-group">
<label class="control-label requiredField" for="message">
Message <span>*</span>
</label>
<textarea
class="form-control"
cols="40"
rows="6"
id="message"
name="message"
required
></textarea>
</div>
<button class="btn btn-primary" name="submit" type="submit">
Submit
</button>
</form>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
{{ right_column | markdownify }}
</div>
</div>
{% endcapture %}
{% include section.html %}