-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.hbs
84 lines (80 loc) · 2.96 KB
/
contact.hbs
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
<!DOCTYPE html>
{{!< default}}
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="jquery.maskedinput.min.js" type="text/javascript"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<style>
body {
background-color: #1E8BC3;
color:white
}
a:link {
color: #22313F;
}
</style>
</head>
<body text="white">
<div class="container">
<div class="row">
<div class="col-md-6">
<h1>Contact</h1>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h3>Email</h3>
<h4><a href="mailto:[email protected]?Subject=Hello" target="_top">[email protected]</a></h4>
<hr>
<h3>University Address</h3>
<p>University of California</br> 112 Hearst Gym, MC 4520 </br> Berkeley, CA 94720-4500</p>
<hr>
</div>
<div class="col-md-6">
<form action="MAILTO:[email protected]?Subject=Hello" method="post" enctype="text/plain">
<div class="input-group">
<h3>Name</h3>
<span class="input-group-button" id="basic-addon1"></span>
<input type="text" name="name" Placeholder="Your Name" class="form-control" aria-describedby="basic-addon1">
</div>
<div class="input-group">
<h3>Phone Number</h3>
<h4><font color=#EEEEEE>(Optional)</font></h4>
<span class="input-group-button" id="basic-addon1"></span>
<input type="text" class="form-control phone" name="Phone Number" Placeholder="Phone Number" aria-describedby="basic-addon1">
</div>
<div class="input-group">
<h3>Your Email</h3>
<span class="input-group-button" id="basic-addon1"></span>
<input type="text" class="form-control" name="Your Email" placeholder="Your Email" aria-describedby="basic-addon1">
</div>
<div class="input-group">
<h3>How can we help?</h3>
<span class="input-group-button" id="basic-addon1"></span>
<input type="text" class="form-control" name="help" placeholder="Join, Subscribe, Contact" aria-describedby="basic-addon1">
</div>
<h3>Comments</h3>
<div><textarea class="form-control" name="message" rows="3"></textarea></div>
<p></p>
<div><button type="submit" value="send" class="btn btn-default">Submit</button></div>
</form>
</div>
</div>
</div>
<script type="text/javascript">
jQuery(function($){
$("#date").mask("99/99/9999",{placeholder:"mm/dd/yyyy"});
$(".phone").mask("(999) 999-9999");
$("#tin").mask("99-9999999");
$("#ssn").mask("999-99-9999");
});
</script>
</body>
</html>