<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.7/css/all.css">
<style>
#mailchimp {
background: #F7F9FB;
color: #595c5f;
padding: 20px 15px;
}
#mailchimp input {
border: medium none;
color: gray;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
margin-bottom: 10px;
padding: 8px 10px;
width: 300px;
border-radius: 20px;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
}
#mailchimp input.email { background: #fff; padding: 10px; text-align: left;}
#mailchimp input.name { background: #fff; padding: 10px; text-align: left;}
#mailchimp input[type="submit"] {
background: #8FC1E3;
color: #fff;
cursor: pointer;
font-size: 15px;
width: 35%;
padding: 8px 0;
}
#mailchimp input[type="submit"]:hover { background: #99DDFF; color: #fff }
.mailinglist{
color: #595c5f;
font-family: Arial, Helvetica, sans-serif;
padding-left: 2.0em;
padding-bottom: 5px;
}
.footnote {
color: grey;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
margin-top: -3px;
padding-left: 2.5em;
}
.error {
border-color: red;
}
.error-message {
color: red;
font-style: italic;
margin-bottom: 1em;
}
.input-icons i {
position: absolute;
}
.input-icons {
width: 100%;
margin-bottom: 10px;
}
.icon {
padding: 10px;
color: #8FC1E3;
min-width: 50px;
text-align: center;
}
.icon2 {
text-align: center;
}
</style>
<script>
var forms = document.querySelectorAll('.validate');
for (var i = 0; i < forms.length; i++) {
forms[i].setAttribute('novalidate', true);
}
var hasError = function (field) {
if (field.disabled || field.type === 'file' || field.type === 'reset' || field.type === 'submit' || field.type === 'button') return;
var validity = field.validity;
if (validity.valid) return;
if (validity.valueMissing) return 'Please fill out this field.';
if (validity.typeMismatch) {
if (field.type === 'email') return 'Please enter an email address.';
if (field.type === 'url') return 'Please enter a URL.';
}
if (validity.tooShort) return 'Please lengthen this text to ' + field.getAttribute('minLength') + ' characters or more. You are currently using ' + field.value.length + ' characters.';
if (validity.tooLong) return 'Please shorten this text to no more than ' + field.getAttribute('maxLength') + ' characters. You are currently using ' + field.value.length + ' characters.';
if (validity.patternMismatch) {
if (field.hasAttribute('title')) return field.getAttribute('title');
return 'Please match the requested format.';
}
if (validity.badInput) return 'Please enter a number.';
if (validity.stepMismatch) return 'Please select a valid value.';
if (validity.rangeOverflow) return 'Please select a value that is no more than ' + field.getAttribute('max') + '.';
if (validity.rangeUnderflow) return 'Please select a value that is no less than ' + field.getAttribute('min') + '.';
return 'The value you entered for this field is invalid.';
};
var showError = function (field, error) {
field.classList.add('error');
if (field.type === 'radio' && field.name) {
var group = field.form.querySelectorAll('[name="' + field.name + '"]');
if (group.length > 0) {
for (var i = 0; i < group.length; i++) {
group[i].classList.add('error');
}
field = group[group.length - 1];
}
}
var id = field.id || field.name;
if (!id) return;
var message = field.form.querySelector('.error-message#error-for-' + id );
if (!message) {
message = document.createElement('div');
message.className = 'error-message';
message.id = 'error-for-' + id;
var label;
if (field.type === 'radio' || field.type ==='checkbox') {
label = field.form.querySelector('label[for="' + id + '"]') || field.parentNode;
if (label) {
label.parentNode.insertBefore( message, label.nextSibling );
}
}
if (!label) {
field.parentNode.insertBefore( message, field.nextSibling );
}
}
field.setAttribute('aria-describedby', 'error-for-' + id);
message.innerHTML = error;
message.style.display = 'block';
message.style.visibility = 'visible';
};
var removeError = function (field) {
field.classList.remove('error');
field.removeAttribute('aria-describedby');
if (field.type === 'radio' && field.name) {
var group = field.form.querySelectorAll('[name="' + field.name + '"]');
if (group.length > 0) {
for (var i = 0; i < group.length; i++) {
group[i].classList.remove('error');
}
field = group[group.length - 1];
}
}
var id = field.id || field.name;
if (!id) return;
var message = field.form.querySelector('.error-message#error-for-' + id + '');
if (!message) return;
message.innerHTML = '';
message.style.display = 'none';
message.style.visibility = 'hidden';
};
document.addEventListener('blur', function (event) {
if (!event.target.form.classList.contains('validate')) return;
var error = hasError(event.target);
if (error) {
showError(event.target, error);
return;
}
removeError(event.target);
}, true);
document.addEventListener('submit', function (event) {
if (!event.target.classList.contains('validate')) return;
var fields = event.target.elements;
var error, hasErrors;
for (var i = 0; i < fields.length; i++) {
error = hasError(fields[i]);
if (error) {
showError(fields[i], error);
if (!hasErrors) {
hasErrors = fields[i];
}
}
}
if (hasErrors) {
event.preventDefault();
hasErrors.focus();
}
}, false);
</script>
<div id="mailchimp" class="notion-root">
<form action="https://ealizadeh.us10.list-manage.com/subscribe/post?u=912b9dacf23679bd0a6e46b22&id=31485d9fc5" method="post" id="mc-embedded-subscribe-form" class="validate" style="max-width:450px;margin:auto" name="mc-embedded-subscribe-form" target="_blank" novalidate>
<div class="clear">
<i class="fa fa-envelope"> </i>
<input class=
"required email" type=
"email" size=
"30" placeholder=
"e.g. [email protected]" name=
"EMAIL" id=
"mce-EMAIL" title=
"The domain portion of the email address is invalid (the portion after the @)." pattern=
"^([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x22([^\x0d\x22\x5c\x80-\xff]|\x5c[\x00-\x7f])*\x22)(\x2e([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x22([^\x0d\x22\x5c\x80-\xff]|\x5c[\x00-\x7f])*\x22))*\x40([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x5b([^\x0d\x5b-\x5d\x80-\xff]|\x5c[\x00-\x7f])*\x5d)(\x2e([^\x00-\x20\x22\x28\x29\x2c\x2e\x3a-\x3c\x3e\x40\x5b-\x5d\x7f-\xff]+|\x5b([^\x0d\x5b-\x5d\x80-\xff]|\x5c[\x00-\x7f])*\x5d))*(\.\w{2,})+$" required> </div>
<div class="clear">
<i class="fa fa-user"> </i>
<input class="name" type="text" size="30" placeholder="e.g. Elon Musk (Optional)" name="FNAME" id="mce-FNAME">
</div>
<p class="footnote"> No Spam. Unsubscribe anytime. </p>
<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 class="clear">
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button">
</div>
</form>
</div>
</html>