Newer
Older
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
75
76
77
78
79
80
81
82
83
84
85
86
87
import React from 'react'
import styled from 'styled-components'
import { reduxForm } from 'redux-form'
import { required } from 'xpub-validators'
import { Button, ValidatedField, TextField, Menu } from '@pubsweet/ui'
const Step0 = ({ journal, handleSubmit }) => (
<FormContainer onSubmit={handleSubmit}>
<Row>
<RowItem>
<Label> First name </Label>
<ValidatedField
component={TextField}
name="firstName"
validate={[required]}
/>
</RowItem>
<RowItem>
<Label> Affiliation </Label>
<ValidatedField component={TextField} name="affiliation" />
</RowItem>
</Row>
<Row>
<RowItem>
<Label> Middle name </Label>
<ValidatedField component={TextField} name="middleName" />
</RowItem>
<RowItem>
<Label> Position </Label>
<ValidatedField
component={TextField}
name="position"
validate={[required]}
/>
</RowItem>
</Row>
<Row>
<RowItem>
<Label> Last name </Label>
<ValidatedField
component={TextField}
name="lastName"
validate={[required]}
/>
</RowItem>
<RowItem>
<Label> Title </Label>
<ValidatedField
component={input => <Menu {...input} options={journal.title} />}
name="title"
validate={[required]}
/>
</RowItem>
</Row>
<Row>
<Button primary type="submit">
CONFIRM & PROCEED TO SET PASSWORD
</Button>
</Row>
</FormContainer>
)
export default reduxForm({
form: 'signUpInvitation',
destroyOnUnmount: false,
forceUnregisterOnUnmount: true,
})(Step0)
const FormContainer = styled.form``
const Row = styled.div`
display: flex;
flex-direction: row;
margin: 20px 0;
align-items: center;
justify-content: space-evenly;
`
const RowItem = styled.div`
flex: 1;
margin-right: 20px;
`
const Label = styled.div`
font-size: 14px;
text-transform: uppercase;
`