-
Notifications
You must be signed in to change notification settings - Fork 15
/
contact.php
286 lines (256 loc) · 8.41 KB
/
contact.php
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Reach out to BitShares eco-system and it's respectful representatives through contact form.">
<meta name="keywords" content="contact, reach us, contact us, bitshares, form, point, blockchain, eco-system, dpos, delegated">
<title>Contact Us | BitShares Blockchain</title>
<base href="/">
<!-- Styles -->
<link rel="stylesheet" href="assets/css/core.css">
<link rel="stylesheet" href="assets/css/thesaas.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- Favicons -->
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png">
<link rel="icon" href="assets/img/favicon.ico">
<script src="https://www.google.com/recaptcha/api.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(function()
{
function after_form_submitted(data)
{
if(data.result == 'success')
{
$('form#reused_form').hide();
$('#success_message').show();
$('#error_message').hide();
}
else
{
$('#error_message').append('<ul></ul>');
jQuery.each(data.errors,function(key,val)
{
$('#error_message ul').append('<li>'+key+':'+val+'</li>');
});
$('#success_message').hide();
$('#error_message').show();
//reverse the response on the button
$('button[type="button"]', $form).each(function()
{
$btn = $(this);
label = $btn.prop('orig_label');
if(label)
{
$btn.prop('type','submit' );
$btn.text(label);
$btn.prop('orig_label','');
}
});
}//else
}
$('#reused_form').submit(function(e)
{
e.preventDefault();
$form = $(this);
//show some response on the button
$('button[type="submit"]', $form).each(function()
{
$btn = $(this);
$btn.prop('type','button' );
$btn.prop('orig_label',$btn.text());
$btn.text('Sending ...');
});
$.ajax({
type: "POST",
url: 'handler.php',
data: $form.serialize(),
success: after_form_submitted,
dataType: 'json'
});
});
});
</script>
<style>
.valigned {vertical-align:top;}
.grid-container {
display: grid;
grid-template-columns: 40% 60%;
grid-gap: 10px;
background-color: #fff;
padding: 0px;
}
.grid-container > div {
background-color: rgba(255, 255, 255, 0.8);
text-align: left;
padding: 20px 0;
}
.item1 {
grid-row: 1 / 3;
}
#mc_embed_signup input.email {width:73%!important;}
#mc_embed_signup{background:#fff; clear:left; font-size:12px!important; }
#mc_embed_signup form {padding: 10px 0 10px 0%!important;}
.btn {font-size:13px;}
@media (max-width: 2500px) {
.col-lg-6 {
-webkit-box-flex: 0 !important;
-webkit-flex: 0 0 94% !important;
-ms-flex: 0 0 94% !important;
flex: 0 0 94% !important;
max-width: 94% !important;
}
}
@media (max-width: 1200px) {
.col-lg-6 {
-webkit-box-flex: 0 !important;
-webkit-flex: 0 0 92% !important;
-ms-flex: 0 0 92% !important;
flex: 0 0 92% !important;
max-width: 92% !important;
}
}
@media (max-width: 992px) {
.col-lg-6 {
-webkit-box-flex: 0 !important;
-webkit-flex: 0 0 90% !important;
-ms-flex: 0 0 90% !important;
flex: 0 0 90% !important;
max-width: 90% !important;
}
.grid-container {grid-template-columns: none !important;}
}
@media (max-width: 768px) {
.col-lg-6 {
-webkit-box-flex: 0 !important;
-webkit-flex: 0 0 90% !important;
-ms-flex: 0 0 90% !important;
flex: 0 0 90% !important;
max-width: 90% !important;
}
}
@media (min-width: 768px) {
.col-md-6 {
-webkit-box-flex: 0;
-webkit-flex: 0 0 100%;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
}
@media (max-width: 414px) {
.col-lg-6 {
-webkit-box-flex: 0 !important;
-webkit-flex: 0 0 90% !important;
-ms-flex: 0 0 90% !important;
flex: 0 0 90% !important;
max-width: 90% !important;
}
}
@media (max-width: 380px) {
.col-lg-6 {
-webkit-box-flex: 0 ;
-webkit-flex: 0 0 89% ;
-ms-flex: 0 0 89% ;
flex: 0 0 89% ;
max-width: 89% ;
}
}
</style>
<!-- Open Graph Tags -->
<meta property="og:title" content="Contact Us | BitShares Blockchain">
<meta property="og:description" content="Reach out to BitShares eco-system and it's respectful representatives through contact form.">
<meta property="og:image" content="assets/img/og-img.jpg">
<meta property="og:url" content="https://bitshares.org/">
<meta name="twitter:card" content="summary_large_image">
<!-- Topbar Navigation Bar Begins-->
<?php require('assets/php/header.php'); ?>
<!-- Top Navigation Bar Ends-->
</head>
<body>
<div canvas="container">
<!-- Header -->
<header class="header header-inverse inner-headers">
<div class="container text-center">
<div class="row">
<div class="col-12 col-lg-8 offset-lg-2">
<h1>Contact</h1>
<p class="fs-18 opacity-70">Let's keep in touch.</p>
</div>
</div>
</div>
</header>
<!-- END Header -->
<!-- Main container -->
<main class="main-content">
<section class="section section-x">
<div class="container">
<div class="grid-container">
<div class="item1">
<form id="contact-form" class="col-lg-6 mx-auto bg-grey p-6 rounded p-20" method="POST" >
<div class="form-row">
<div class="form-group col-md-6 p-0">
<input id="name" class="form-control form-control-lg" type="text" name="name" placeholder="Name" required maxlenght="50">
</div>
<div class="form-group col-md-6 p-0">
<input id="email" class="form-control" type="email" name="email" placeholder="Your Email Address" required>
</div>
</div>
<div class="form-group">
<textarea id="message" class="form-control form-control-lg" rows="8" maxlenght="5000" placeholder="Your Message" name="message" required></textarea>
</div>
<div class="text-xs-center">
<div class="g-recaptcha" data-sitekey="6LdI73oUAAAAAE6g5PkvYXrH7OOwdBcc-CyA5-hT"></div>
</div>
<div class="text-center">
<button class="btn btn-lg btn-primary" type="submit">Submit Inquiry</button>
</div>
</form>
<div id="success_message" style="display:none">
<h3>Submitted the form successfully!</h3>
<p>
We will get back to you soon.
</p>
</div>
<div id="error_message"
style="width:100%; height:100%; display:none; ">
<h3>Error</h3>
Sorry there was an error sending your form.
</div>
</div>
<div class="item2">
<h3>Move Institute</h3>
<p class="contact-desc">Owner of bitshares.org domain and Website Manager through Consensus</p>
<p class="contact-info">Address: Naselje Ljudske Pravice 29<br>
9000 Murska Sobota, Slovenia<br>
Reg. number: 2098555000<br>
<a class="weblinks" href="https://move-institute.si">Official Website</a></p>
<h3>BitShares Blockchain Foundation</h3>
<p class="contact-desc">Legal Representative, Public Escrow/Accountant and elected Spokesperson</p>
<p class="contact-info">Address: Zutphenseweg 6<br>
7418AJ Deventer, Netherlands<br>
Reg. number: 66190169<br>
<a class="weblinks" href="https://bitshares.foundation">Official Website</a></p>
</div>
</div>
</div>
</section>
</main>
<!-- END Main container -->
<?php require('assets/php/footer.php');?>
</div>
<!-- Responsive Menu -->
<?php require('assets/php/mobilemenu.php');?>
<!-- Responsive Menu -->
<!-- Scripts -->
<script src="assets/js/core.min.js"></script>
<script src="assets/js/script.js"></script>
<!-- End Scripts -->
<!-- Go to Top Button -->
<div id="stop" class="scrollTop bttt-border bttt-round bttt-positionRight bttt-slideFromBottom">
<i class='fa fa-chevron-up'></i>
</div>
<!-- End Go to Top Button -->
</body>
</html>