From 4057bb1cc2ad92509c266db92cb10e4eb2873002 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Tue, 8 Oct 2019 23:23:15 +0530 Subject: [PATCH] fix(client): update report-user placeholder text --- client/src/client-only-routes/ShowUser.js | 25 ++++++++++++++--------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/client/src/client-only-routes/ShowUser.js b/client/src/client-only-routes/ShowUser.js index 6606b259d4..cee81766aa 100644 --- a/client/src/client-only-routes/ShowUser.js +++ b/client/src/client-only-routes/ShowUser.js @@ -10,7 +10,8 @@ import { FormGroup, ControlLabel, Button, - Col + Col, + Row } from '@freecodecamp/react-bootstrap'; import Helmet from 'react-helmet'; @@ -142,41 +143,45 @@ class ShowUser extends Component { } const { textarea } = this.state; - + const placeholderText = `Please provide as much detail as possible about the account or behavior you are reporting.`; return ( Report a users profile | freeCodeCamp.org - - - + + +

Do you want to report {username} 's profile for abuse?

+ +
+ +

We will notify the community moderators' team, and a send copy of - this report to your email:{' '} - {email}. + this report to your email: {email}

We may get back to you for more information, if required.

- Additional Information + What would you like to report? + -
+
); }