-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
83 lines (69 loc) · 3.07 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
---
title: Contact Cevelop
layout: default
active:
permalink: /contact/
---
<div class="jumbotron">
<div class="container">
<h1>Contact <small>– let us know what you think</small></h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6">
<h1><i class="fa fa-question-circle"></i> Feedback</h1>
<p>We would be very happy to hear from you, so feel free to drop us a message with your feedback. You can reach us at <a href="mailto:ifs@ost.ch">ifs@ost.ch</a> or send us a message using the form below:</p>
<div style="display:none;" id="form-sent" class="alert alert-success">
<p>Thank you for your feedback!</p>
</div>
<div style="display:none;" id="form-failed" class="alert alert-danger">
<p><strong>Uh oh!</strong> Something went wrong, please consider us sending an <a href="mailto:ifs@ost.ch">email</a> instead.</p>
</div>
<form role="form" class="contact">
<div class="input-group">
<span class="input-group-addon"><span class="glyphicon glyphicon-user"></span></span>
<input type="text" class="form-control" id="name" name="name" placeholder="Your Name">
</div>
<div class="input-group">
<span class="input-group-addon">@</span>
<input type="email" class="form-control" id="email" name="email" placeholder="E-Mail Address">
</div>
<textarea class="form-control input-lg" id="msg" name="msg" rows="10" placeholder="Cevelop is ..."></textarea>
<a href="#" id="submit" class="btn btn-success btn-block">Send Your Message</a>
</form>
</div>
<div class="col-lg-6">
<h1><i class="fa fa-twitter"></i> Twitter</h1>
<p>You can also on engage with us on <a href="https://twitter.com/cevelop" target="_blank">Twitter</a>.</p>
<h1><i class="fa fa-star"></i> Support Us</h1>
<p>Do you want to help us provide a better C++ development experience? Do you have a feature request? We are part of a public university and could well use financial contributions. Contact us!</p>
<h1><i class="fa fa-bug"></i> Bug Reports</h1>
<p>When reporting bug reports, please keep in mind that Cevelop builds on Eclipse CDT. So if your problem is related to some core functionality and not one of our <a href="/features">additions</a>, please consider reporting the bug directly to <a href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=CDT" target="_blank">Eclipse</a>.</p>
<h3>Reporting Cevelop Bugs</h3>
<p>Please submit bug reports, feature wishesor other issues you might have to our <a href="https://github.com/cevelop/issues" target="_blank">GitHub Issue Tracker</a>.</p>
</div>
</div>
</div>
</div>
<script>
$(function() {
$("#submit").click(function(){
var data = $('form.contact');
$.ajax({
type: "POST",
url: "/mailer/process.php",
data: $('form.contact').serialize(),
dataType: "text",
success: function(msg){
$("#form-sent").show();
$("form.contact").hide();
},
error: function(){
$("#form-failed").show();
$("form.contact").hide();
}
});
});
});
</script>