-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Datakluis/feature/mail-form
Add email form to homepage
- Loading branch information
Showing
1 changed file
with
147 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,151 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"/><title>jouw.id</title> | ||
<meta charset="utf-8" /><title>jouw.id</title> | ||
<link href="./assets/fonts/solway.css" rel="stylesheet"> | ||
<link rel="icon" type="image/svg+xml" href="./logo.svg"/> | ||
<link rel="icon" type="image/svg+xml" href="./logo.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | ||
<style> | ||
html, body { | ||
height: 100% | ||
} | ||
body { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
justify-content: space-around; | ||
} | ||
h1 { | ||
color: #02006F; | ||
font-family: Solway, sans-serif; | ||
font-size: 10vw; | ||
text-align: center; | ||
} | ||
img { | ||
margin-top: 5%; | ||
max-width: 80%; | ||
} | ||
html, body { | ||
height: 100% | ||
} | ||
|
||
a { | ||
border-bottom: 2px solid #f4717b; | ||
color: #02006f; | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
border-bottom: 2px solid #02006f; | ||
color: #f4717b; | ||
} | ||
|
||
body { | ||
color: #02006f; | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
font-family: Solway, sans-serif; | ||
font-size: max(1em, 2vw); | ||
justify-content: space-around; | ||
} | ||
|
||
h1 { | ||
text-align: center; | ||
} | ||
|
||
img { | ||
margin-top: 5%; | ||
max-width: 80%; | ||
} | ||
|
||
li { | ||
margin: 5% 0; | ||
text-align: center; | ||
list-style-type: none; | ||
} | ||
|
||
input[type="email"], input[type="text"] { | ||
border: 1px solid #02006f; | ||
border-radius: 5px; | ||
font-size: 1em; | ||
padding: 0.5em; | ||
margin: 0.5em 0; | ||
} | ||
|
||
button { | ||
background-color: #f4717b; | ||
border: none; | ||
border-radius: 5px; | ||
color: white; | ||
cursor: pointer; | ||
font-size: 1em; | ||
padding: 0.5em; | ||
margin: 0.5em 0; | ||
} | ||
|
||
input[type="submit"] { | ||
background-color: #02006f; | ||
border: none; | ||
border-radius: 5px; | ||
color: white; | ||
cursor: pointer; | ||
font-size: 1em; | ||
padding: 0.5em; | ||
margin: 0.5em 0; | ||
font-family: Solway, sans-serif; | ||
} | ||
|
||
#mc_embed_signup_scroll { | ||
width: fit-content; | ||
margin: 3em auto; | ||
} | ||
|
||
.mc-field-group { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
max-width: 28em; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.mce_inline_error { | ||
width: 100%; | ||
} | ||
|
||
.asterisk { | ||
color: #f4717b; | ||
} | ||
</style> | ||
<img src="./logo.svg" alt="jouw.id logo"/> | ||
<h1>Coming soon...</h1> | ||
<img src="./logo.svg" alt="jouw.id logo" /> | ||
<section> | ||
<h1>Coming soon...</h1> | ||
<ul> | ||
<li> | ||
Want to receive updates on our progress?<br> Follow us | ||
<a href="https://www.linkedin.com/company/nederlandse-datakluis/">on LinkedIn</a> and subscribe to our regular updates. | ||
</li> | ||
<li> | ||
Want to apply for a (waiting list) seat for our first closed pilots?<br> | ||
Sign up now! | ||
<div id="mc_embed_shell"> | ||
<div id="mc_embed_signup"> | ||
<form action="https://datakluis.us21.list-manage.com/subscribe/post?u=1407dd49f0f6db080cb9f41e0&id=1f9e4128b2&f_id=006cfbe6f0" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank"> | ||
<div id="mc_embed_signup_scroll"> | ||
<div class="mc-field-group"> | ||
<label for="mce-EMAIL">Email Address<sup class="asterisk">*</sup></label> | ||
<input type="email" name="EMAIL" class="required email" id="mce-EMAIL" required="" value="" placeholder="[email protected]"> | ||
</div> | ||
<div class="mc-field-group"> | ||
<label for="mce-FNAME">First Name </label> | ||
<input type="text" name="FNAME" class=" text" id="mce-FNAME" value="" placeholder="Boaty"> | ||
</div> | ||
<div class="mc-field-group"> | ||
<label for="mce-LNAME">Last Name </label> | ||
<input type="text" name="LNAME" class=" text" id="mce-LNAME" value="" placeholder="McBoatFace"> | ||
</div> | ||
<div hidden=""><input type="hidden" name="tags" value="2988232"></div> | ||
<div id="mce-responses" class="clear"> | ||
<div class="response" id="mce-error-response" style="display: none;"></div> | ||
<div class="response" id="mce-success-response" style="display: none;"></div> | ||
</div> | ||
<div style="position: absolute; left: -5000px;" aria-hidden="true"> | ||
<input type="text" name="b_1407dd49f0f6db080cb9f41e0_1f9e4128b2" tabindex="-1" value=""> | ||
</div> | ||
<div class="clear"> | ||
<input type="submit" name="subscribe" id="mc-embedded-subscribe" class="button" value="Sign Up"> | ||
</div> | ||
</div> | ||
</form> | ||
<sup class="indicates-required"><span class="asterisk">*</span> indicates required field</sup> | ||
|
||
</div> | ||
<script type="text/javascript" src="https://s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js"></script> | ||
<script type="text/javascript">(function ($) { | ||
window.fnames = ['EMAIL', 'FNAME', 'LNAME'] | ||
window.ftypes = ['email', 'text', 'text'] | ||
}(jQuery)) | ||
var $mcj = jQuery.noConflict(true)</script> | ||
</div> | ||
</li> | ||
</ul> | ||
</section> |