mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-25 14:08:30 +02:00
add subscribe confirmation page
This commit is contained in:
@@ -72,7 +72,7 @@ keywords = "search engine, vector database, neural network, matching, filter, Sa
|
||||
githubDocPrefix = "https://github.com/qdrant/landing_page/tree/master/qdrant-landing/content/"
|
||||
githubIssueLink = "https://github.com/qdrant/landing_page/issues/new/choose"
|
||||
|
||||
docVersion = "v1.6.x"
|
||||
docVersion = "v1.7.x"
|
||||
cloudDocVersion = "v0.1.x"
|
||||
|
||||
googleTagManager = "GTM-KRLCXD5"
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Subscribe
|
||||
section_title: Subscribe
|
||||
subtitle: Subscribe
|
||||
description: Subscribe
|
||||
---
|
||||
@@ -0,0 +1,9 @@
|
||||
{{- partial "header.html" . -}}
|
||||
|
||||
{{- partial "second_header.html" . -}}
|
||||
|
||||
<div id="content">
|
||||
{{ block "main" . }}{{ end }}
|
||||
</div>
|
||||
|
||||
{{- partial "footer.html" . -}}
|
||||
@@ -0,0 +1,77 @@
|
||||
{{ partial "header" . }}
|
||||
|
||||
<style>
|
||||
#mc_embed_signup input.mce_inline_error {
|
||||
border-color:#5C0A1C;
|
||||
}
|
||||
#mc_embed_signup div.mce_inline_error {
|
||||
padding: 5px 10px;
|
||||
font-weight: bold;
|
||||
z-index: 1;
|
||||
background-color: transparent;
|
||||
color:var(--brand-primary);
|
||||
}
|
||||
#mce-success-response {
|
||||
padding-bottom: 25px;
|
||||
color: green;
|
||||
font-size: 140%;
|
||||
}
|
||||
#mce-error-response {
|
||||
padding-bottom: 25px;
|
||||
color: red;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- Contact Page Section -->
|
||||
<section class="login-page-section">
|
||||
<div class="auto-container mt-lg-5 pt-lg-5 mb-lg-5 pb-lg-4">
|
||||
<div class="row clearfix">
|
||||
|
||||
<!-- Image Column -->
|
||||
<div class="image-column col-lg-6 col-md-12 col-sm-12">
|
||||
<div class="inner-column">
|
||||
<div class="image">
|
||||
<img src="/images/subscribe.jpg" alt="" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Confirmation -->
|
||||
<div class="form-column col-lg-6 col-md-12 col-sm-12 mb-5">
|
||||
<div class="inner-column">
|
||||
<h3>Thanks for subscribing!</h3>
|
||||
<div class="welcome"> Your subscription to our Newsletter has been confirmed.</div>
|
||||
<p>You can unsubscribe at any time by clicking the link in the footer of our emails.</p>
|
||||
<p>For information about our privacy practices, please visit our <a href="/legal/privacy-policy/">Privacy Policy</a> page.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- End Contact Page Section -->
|
||||
|
||||
|
||||
<script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script>
|
||||
<script type='text/javascript'>
|
||||
(function ($) {
|
||||
window.fnames = new Array();
|
||||
window.ftypes = new Array();
|
||||
fnames[0] = 'EMAIL';
|
||||
ftypes[0] = 'email';
|
||||
fnames[1] = 'FNAME';
|
||||
ftypes[1] = 'text';
|
||||
fnames[2] = 'LNAME';
|
||||
ftypes[2] = 'text';
|
||||
fnames[3] = 'ADDRESS';
|
||||
ftypes[3] = 'address';
|
||||
fnames[4] = 'PHONE';
|
||||
ftypes[4] = 'phone';
|
||||
fnames[5] = 'BIRTHDAY';
|
||||
ftypes[5] = 'birthday';
|
||||
}(jQuery));
|
||||
var $mcj = jQuery.noConflict(true);
|
||||
</script>
|
||||
|
||||
|
||||
{{ partial "footer" . }}
|
||||
@@ -0,0 +1,2 @@
|
||||
{{ define "main" }}
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user