-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathcontact.html
109 lines (101 loc) · 5.21 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
---
title: Contact Us | Feedback | Suggestion | Contribute | Developer Tools
layout: post
---
<html>
<head>
{% include common-meta %}
<title>{{ page.title }}</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<meta name="description" content="Contact us or let us know your feedback about these tools" />
<meta name="keywords" content="online,tool,contact,feedback" />
<!-- CSS for the site theme -->
{% include theme-css %}
<!-- Annoying IE fixes -->
{% include ie-fixes %}
</head>
<body class="hold-transition skin-green sidebar-mini">
<!-- Site wrapper -->
<div class="wrapper">
<!-- header tag from theme -->
{% include theme-header %}
<!-- Sidebar for the whole website -->
{% include theme-sidebar %}
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Main content -->
<section class="content">
<div class="box box-info">
<div class="box-header with-border">
<h1 class="box-title">Contact Us</h1>
</div>
<!-- /.box-header -->
<!-- form start -->
<div class="box-body">
<h3 class="text-green" id="success-messsage"></h3>
<div class="form">
<script type="text/javascript">
var submitted = false;
</script><iframe id="hidden_iframe" name="hidden_iframe" onload="if(submitted){window.location='https://tools.fromdev.com/contact.html?success=y';}" style="display: none;"></iframe>
<form name="contact-form" action="https://docs.google.com/a/fromdev.com/forms/d/e/1FAIpQLSfSRWi5KNcNy7PbBL0NdYwjH2Aaq4p4vlYL5NIv5AzlxGlpig/formResponse" target="hidden_iframe" method="POST" id="mG61Hd" onsubmit="submitted=true;">
<p></p>
Name
<br />
<input class="form-control" id="entry_1000000" name="entry.1000000" size="30" type="text" value="" required="" />
<p></p>
Email
<span style="font-weight: bolder;">*</span>
<br />
<input class="form-control" id="entry_1000001" name="entry.1000001" size="30" type="text" value="" required="" />
<p></p>
Subject
<span style="font-weight: bolder;">*</span>
<br />
<select class="form-control" aria-label="Subject " aria-required="true" id="entry_1000004" name="entry.1000004" required=""><option value="Advertise" />Advertise<option value="Feedback" />Feedback</select>
<p></p>
Message
<span style="font-weight: bolder;">*</span>
<br />
<textarea class="form-control" cols="25" id="entry_1000002" name="entry.1000002" rows="5" required=""></textarea>
<input name="pageHistory" type="hidden" value="0" /> <input name="fvv" type="hidden" value="0" /> <input name="fbzx" type="hidden" value="-6469887714227403977" />
<p></p>
<input class="btn btn-info" id="ss-submit" name="submit" type="submit" value="Send" />
<p></p>
<div style="text-align: center; max-width: 222px; width: 100%">
<p class="contact-form-error-message" id="ContactForm1_contact-form-error-message"></p>
<p class="contact-form-success-message" id="ContactForm1_contact-form-success-message"></p>
</div>
</form>
</div>
</div>
</div>
</section>
</div>
<!-- /.content-wrapper -->
{% include theme-footer %}
</div>
<!-- ./wrapper -->
{% include theme-bottom-js %}
</body>
<script type="text/javascript">
var getUrlParam = function(name, url) {
if (!url) {
url = window.location.href;
}
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
};
$(document).ready(function() {
var success = getUrlParam("success");
if (success) {
$("#success-messsage").text("Thank You for connecting with us . \nWe will get back to you shortly.")
setTimeout(function(){ $("#success-messsage").text(''); },3000);
}
});
</script>
</html>