-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMailinglistForm.js
74 lines (69 loc) · 1.71 KB
/
MailinglistForm.js
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
import React from "react"
import styled from "styled-components"
import { withTranslation } from "react-i18next"
import { TextField, Button } from "@material-ui/core"
import withSimpleErrorBoundary from "../util/withSimpleErrorBoundary"
const Container = styled.div`
padding: 3rem;
`
const FieldContainer = styled.div`
width: 100%;
display: flex;
height: 2.5rem;
button {
background-color: #22a7f0;
color: white;
border: 0;
padding: 0 1rem;
font-weight: bold;
transition: all 0.2s;
height: 3.5rem !important;
margin-left: 0.5rem;
&:hover {
cursor: pointer;
background-color: #4183d7;
}
}
`
class MailingListForm extends React.Component {
constructor(props) {
super(props)
this.form = React.createRef()
}
render() {
return (
<Container>
<h2>{props.t("mailingListTitle")}</h2>
<form
action="https://mooc.us8.list-manage.com/subscribe/post?u=db82662e446284fd41bd8370e&id=21c004aa9c"
method="post"
name="mc-embedded-subscribe-form"
target="_blank"
noValidate
id="mailingListForm"
ref={this.form}
>
<FieldContainer>
<TextField
variant="outlined"
type="text"
label="Sähköpostiosoite"
fullWidth
name="EMAIL"
/>
<Button
onClick={() => {
this.form.current.submit()
}}
>
{props.t("subscribe")}
</Button>
</FieldContainer>
</form>
</Container>
)
}
}
export default withTranslation("common")(
withSimpleErrorBoundary(MailingListForm),
)