-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
65 lines (53 loc) · 2.63 KB
/
contact.html
File metadata and controls
65 lines (53 loc) · 2.63 KB
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
---
layout: pages
title: Contact Us
permalink: /contact/
---
<head>
<link rel="stylesheet" type="text/css" href="/assets/css/contact.stylesheet.css">
</head>
<!-- Body begins here -->
<div class="container">
<div class="col-md-12">
<h2 class="contact-title">Contact Us</h2>
<hr/>
</div>
<!-- I hope NOBODY EVER SEES THIS CODE. FORGIVE MY USE OF SPACES -->
<div class="col-md-5" style="margin-top: 24px;">
<span class="glyphicon glyphicon-map-marker" style="float:left;"></span>
<p class="info" style="display: block; overflow: hidden;">
50 Embarcadero Rd, Palo Alto, CA 94301 <br>(See <a class="link" href="/resources/">Resources</a> for map)
</p>
<span class="glyphicon glyphicon-envelope" style="float:left;"></span>
<p class="info" style="display: block; overflow: hidden;">
<a class="link" href="mailto:contact@palyrobotics.com">contact@palyrobotics.com</a>
<span style="font-weight: bold; display: block; margin-top: 10px;">For summer camp inquiries, please email: <a class="link" href="mailto:summercamp@palyrobotics.com">summercamp@palyrobotics.com</a></span>
</p>
</div>
<div class="col-md-7">
<form action="https://formspree.io/f/contact@palyrobotics.com" method="POST">
<!-- Name input -->
<div class="form-group">
<label for="exampleInputEmail1">Name</label>
<input type="text" name="name" class="form-control" id="NameInput" aria-describedby="nameHelp" placeholder="Enter name:" autofocus required>
</div>
<!-- End name input -->
<!-- E-Mail input -->
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" name="_replyto" type="text" class="form-control" id="EmailInput" aria-describedby="emailHelp" placeholder="Enter email:" required>
<p id="emailHelp" class="form-text text-muted">Your email will not be disclosed.</small>
</div>
<!-- End E-Mail input -->
<!-- Text input field -->
<div class="form-group">
<label for="exampleTextarea">Your Message</label>
<textarea name="input" class="form-control" id="exampleTextarea" rows="3" required></textarea>
</div>
<!-- Text input field ends here -->
<!-- Input field -->
<button type="submit" class="btn btn-primary submit">Submit</button>
</form>
</div>
</div>
<!-- Body ends here -->