mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
25 lines
828 B
JavaScript
25 lines
828 B
JavaScript
import constants from '../constants.json'
|
|
|
|
export default function Feedback (props) {
|
|
// TODO: textarea style to css
|
|
// TODO: response to user that msg is sucessfully sent
|
|
return (
|
|
<div>
|
|
<form action={constants.apiUrl + 'postfeedback'} method='post'>
|
|
<div>Észrevételek: (közeledő teszt miatti kérdés-karbantartás, bug, feature vagy egyéb dolog, ami nyomja a lelked)</div>
|
|
<textarea
|
|
className='feedbackArea'
|
|
type='text'
|
|
name='message_field'
|
|
style={{
|
|
width: '100%',
|
|
boxSizing: 'border-box',
|
|
height: '400px'
|
|
}}
|
|
/>
|
|
<div>Rengeteg spam-et kapok, nyugodtan küldd el ezerszer, akkor hátha észreveszem a spam között :)</div>
|
|
<button>Küldés</button>
|
|
</form>
|
|
</div>
|
|
)
|
|
}
|