Skip to content

Commit 618ad9d

Browse files
authored
Merge pull request #91 from optriment/ui/add-descriptive-message-to-application-form
Add descriptive message to application form
2 parents 0622689 + f06e94f commit 618ad9d

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

src/forms/ApplicationForm/index.jsx

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useState } from 'react'
22
import { useRouter } from 'next/router'
3-
import { Button, Form } from 'semantic-ui-react'
3+
import { Message, Button, Form } from 'semantic-ui-react'
44
import ErrorWrapper from '../../components/ErrorWrapper'
55
import { createApplication } from '../../lib/api'
66

@@ -48,6 +48,30 @@ export const ApplicationForm = ({ job, application, token, currencyLabel }) => {
4848
<ErrorWrapper header="Unable to post an application" error={error} />
4949
)}
5050

51+
{!application && (
52+
<Message>
53+
<Message.Header>Please do not forget:</Message.Header>
54+
<Message.List>
55+
<Message.Item>
56+
Leave your contacts (Telegram, Skype or email) for the customer
57+
</Message.Item>
58+
<Message.Item>
59+
Write descriptive comment about your relevant experience
60+
</Message.Item>
61+
<Message.Item>
62+
The cost of your services must be in{' '}
63+
<a
64+
href="https://coinmarketcap.com/currencies/bnb/"
65+
target="_blank"
66+
rel="nofollow noopener noreferrer"
67+
>
68+
BNB
69+
</a>
70+
</Message.Item>
71+
</Message.List>
72+
</Message>
73+
)}
74+
5175
<Form onSubmit={handleCreateApplication}>
5276
<Form.TextArea
5377
id="comment"

0 commit comments

Comments
 (0)