-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: nomenclature in register page #212
Changes from 4 commits
3572dbd
6f1b9ef
2927714
686cf53
1ceaa82
208d594
6ada13e
f00d823
dd1ee52
c8fd4d4
e7d74a7
e28b5af
1e915f7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -6,6 +6,7 @@ import { | |||||||||||
Form, | ||||||||||||
Input, | ||||||||||||
Radio, | ||||||||||||
Space, | ||||||||||||
Tooltip, | ||||||||||||
Typography, | ||||||||||||
} from "antd"; | ||||||||||||
|
@@ -15,21 +16,19 @@ import { | |||||||||||
MailOutlined, | ||||||||||||
} from "@ant-design/icons"; | ||||||||||||
import { useAuth } from "@coderdojobraga/ui"; | ||||||||||||
import Koi from "~/components/Koi"; | ||||||||||||
|
||||||||||||
import styles from "./style.module.css"; | ||||||||||||
|
||||||||||||
function Signup() { | ||||||||||||
const { Title, Text } = Typography; | ||||||||||||
const { errors, isLoading, sign_up } = useAuth(); | ||||||||||||
|
||||||||||||
const [size, setSize] = useState(""); | ||||||||||||
|
||||||||||||
const handleSizeChange = (e) => { | ||||||||||||
const handleSizeChange = (e: any) => { | ||||||||||||
setSize(e.target.value); | ||||||||||||
}; | ||||||||||||
|
||||||||||||
const onFinish = ({ email, password, role }) => { | ||||||||||||
const onFinish = ({ email, password, role }: any) => { | ||||||||||||
sign_up({ email, password, role }); | ||||||||||||
}; | ||||||||||||
|
||||||||||||
|
@@ -73,26 +72,35 @@ function Signup() { | |||||||||||
}, | ||||||||||||
]} | ||||||||||||
> | ||||||||||||
<Radio.Group | ||||||||||||
className={styles.select} | ||||||||||||
value={size} | ||||||||||||
onChange={handleSizeChange} | ||||||||||||
> | ||||||||||||
<Radio.Button className={styles.option} value="guardian"> | ||||||||||||
Guardião | ||||||||||||
</Radio.Button> | ||||||||||||
<Radio.Button className={styles.option} value="mentor"> | ||||||||||||
Mentor | ||||||||||||
</Radio.Button> | ||||||||||||
<Tooltip | ||||||||||||
className={styles.option} | ||||||||||||
title="Inicia sessão como Guardião para inscreveres um Ninja" | ||||||||||||
> | ||||||||||||
<Radio.Button disabled> | ||||||||||||
Ninja   | ||||||||||||
<InfoCircleOutlined /> | ||||||||||||
</Radio.Button> | ||||||||||||
</Tooltip> | ||||||||||||
<Radio.Group value={size} onChange={handleSizeChange}> | ||||||||||||
<Space direction="vertical"> | ||||||||||||
<Radio value="guardian" className="mb-2"> | ||||||||||||
Guardião | ||||||||||||
<label id="mentor-description" className="ml-2 text-gray-500"> | ||||||||||||
Responsável da criança. | ||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Muda para "Responsável pela criança" |
||||||||||||
</label> | ||||||||||||
</Radio> | ||||||||||||
|
||||||||||||
<Radio value="mentor" className="mb-2"> | ||||||||||||
Mentor | ||||||||||||
<label id="mentor-description" className="ml-5 text-gray-500"> | ||||||||||||
Voluntário pela iniciativa. | ||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Muda para "Voluntário na organização" |
||||||||||||
</label> | ||||||||||||
</Radio> | ||||||||||||
|
||||||||||||
<Tooltip | ||||||||||||
className={styles.option} | ||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
title="Inicia sessão como Guardião para inscreveres um Ninja" | ||||||||||||
> | ||||||||||||
<Radio disabled value="1"> | ||||||||||||
Ninja | ||||||||||||
<label id="mentor-description" className="ml-8 text-gray-500"> | ||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
Criança participante. | ||||||||||||
</label> | ||||||||||||
<InfoCircleOutlined /> | ||||||||||||
</Radio> | ||||||||||||
</Tooltip> | ||||||||||||
</Space> | ||||||||||||
</Radio.Group> | ||||||||||||
</Form.Item> | ||||||||||||
|
||||||||||||
|
@@ -124,7 +132,7 @@ function Signup() { | |||||||||||
<Form.Item | ||||||||||||
className={styles.button} | ||||||||||||
validateStatus={errors && "error"} | ||||||||||||
help={errors?.email && "Email já registado"} | ||||||||||||
help={!errors || "Email já registado"} | ||||||||||||
> | ||||||||||||
<Button | ||||||||||||
type="primary" | ||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.