Skip to content
Snippets Groups Projects
Commit 65ad007f authored by Barnabás Czémán's avatar Barnabás Czémán
Browse files

Small style changes

parent f9db34a7
No related branches found
No related tags found
No related merge requests found
import React, { Component } from 'react'; import React, { Component } from 'react';
import { Container, Segment, Form, Dropdown, Divider } from 'semantic-ui-react'; import { Container, Segment, Form, Dropdown, Divider, Card, Header } from 'semantic-ui-react';
import { connect } from 'react-redux'; import { connect } from 'react-redux';
import { textChange, submitRegistration, groupChange } from '../../actions'; import { textChange, submitRegistration, groupChange } from '../../actions';
...@@ -23,56 +23,64 @@ class Profile extends Component { ...@@ -23,56 +23,64 @@ class Profile extends Component {
nick, groups, motivation, signed, id, nick, groups, motivation, signed, id,
} = this.props; } = this.props;
return ( return (
<div> <Container
<Segment textAlign='center' vertical> style={{
<Container> marginBottom: '0.5em',
<Form> marginTop: '0.5em',
<Divider horizontal>Becenév</Divider> }}
<Form.Input >
fluid <Divider horizontal>
name='nick' <Header as='h2' content='Profil (Jelentkezés)' />
onChange={e => this.props.textChange(e)} </Divider>
placeholder='Becenév' <Segment textAlign='center'>
value={nick} <Form>
/> <Divider horizontal>Becenév</Divider>
<Divider horizontal>Motivációs levél</Divider> <Form.Input
<Form.TextArea fluid
rows={10} name='nick'
name='motivation' onChange={e => this.props.textChange(e)}
onChange={e => this.props.textChange(e)} placeholder='Becenév'
placeholder='Miért szeretnék jelentkezni...' value={nick}
value={motivation} />
/>
<Divider horizontal>Érdekelt Körök</Divider> <Divider horizontal>Motivációs levél</Divider>
<Dropdown <Form.TextArea
fluid rows={10}
multiple name='motivation'
selection onChange={e => this.props.textChange(e)}
placeholder='DevTeam, ...' placeholder='Miért szeretnék jelentkezni...'
onChange={(_, v) => this.props.groupChange(v.value)} value={motivation}
options={options} />
defaultValue={groups}
/> <Divider horizontal>Érdekelt Körök</Divider>
<br /> <Dropdown
<Form.Checkbox fluid
name='signed' multiple
label='Szeretnék jelentkezni a KSZK-ba' selection
onChange={(_, v) => placeholder='DevTeam, ...'
this.props.textChange({ target: { name: v.name, value: v.checked } }) onChange={(_, v) => this.props.groupChange(v.value)}
} options={options}
checked={signed} defaultValue={groups}
/> />
<Form.Button <br />
onClick={() => this.props.submitRegistration({ <Form.Checkbox
nick, motivation, signed, groups, id, name='signed'
})} label='Szeretnék jelentkezni a KSZK-ba'
> onChange={(_, v) =>
Mentés this.props.textChange({ target: { name: v.name, value: v.checked } })
</Form.Button> }
</Form> checked={signed}
</Container> />
<Form.Button
onClick={() => this.props.submitRegistration({
nick, motivation, signed, groups, id,
})}
>
Mentés
</Form.Button>
</Form>
</Segment> </Segment>
</div> </Container>
); );
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment