Add signup form

pull/1331/head
Kamran Ahmed 5 years ago
parent 4b3b1496b7
commit 9aea5bc136
  1. 9
      components/signup-form/index.js
  2. 4
      components/signup-form/style.js

@ -4,8 +4,13 @@ const SignUpForm = () => (
<SignUpWrap>
<Title>Subscribe</Title>
<Subtitle>You have caught us before we are ready, enter your email below and we will keep you posted</Subtitle>
<Textbox type="text" placeholder="Your email" />
<Button>Subscribe</Button>
<form action="https://kamranahmed.us9.list-manage.com/subscribe/post?u=6f57b741a6a939744f1f203a0&amp;id=f9ca4d6aee" target="_blank" method="post">
<Textbox type="email" name="EMAIL" required placeholder="Your email" />
<div style={{position: 'absolute', left: '-5000px'}}>
<input type="text" name="b_6f57b741a6a939744f1f203a0_f9ca4d6aee" tabIndex="-1" value="" />
</div>
<Button type="submit">Subscribe</Button>
</form>
</SignUpWrap>
);

@ -49,7 +49,9 @@ export const Button = styled.button`
color: white;
border-radius: 5px;
&:hover {
&:hover, &:active, &:focus {
background: #000000;
box-shadow: none;
outline: none;
}
`;

Loading…
Cancel
Save