From 3ac776ff2498f5e341fb4062d422c01593001e6e Mon Sep 17 00:00:00 2001
From: rlacko <rlacko@sch.bme.hu>
Date: Sun, 26 Jan 2020 01:06:34 +0100
Subject: [PATCH] message after deadline on Profile page

---
 src/components/pages/Profile.js | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/components/pages/Profile.js b/src/components/pages/Profile.js
index be3166e..fc6336d 100644
--- a/src/components/pages/Profile.js
+++ b/src/components/pages/Profile.js
@@ -37,10 +37,15 @@ class Profile extends Component {
         {canEdit ?
         <Segment inverted color='red' tertiary>
           <p style={{ fontSize: '1.33em' }}>
-            A profilod mentés után is módosítható a későbbiekben, egészen {endDateText}.
+            A profilod mentés után is módosítható a későbbiekben, egészen {endDateText}-ig.
           </p>
         </Segment>
-        : ''}
+        :
+        <Segment inverted color='red' tertiary>
+          <p style={{ fontSize: '1.33em' }}>
+            A határidő {endDateText} volt, már nem tudsz jelentkezni.
+          </p>
+        </Segment>}
 
         <Form>
           {canEdit ? 
-- 
GitLab