-
Salle: {roomName}
-
Utilisateurs: {students.length}/60
+
+
+
+
+
+ {quizStarted && (
+
+
+ {students.length}/60
+
+ )}
@@ -441,8 +458,12 @@ const ManageRoom: React.FC = () => {
{quizQuestions ? (
-
{quiz?.title}
+ {!isNaN(Number(currentQuestion?.question.id)) && (
+
+ Question {Number(currentQuestion?.question.id)}/{quizQuestions?.length}
+
+ )}
{quizMode === 'teacher' && (
@@ -479,23 +500,23 @@ const ManageRoom: React.FC = () => {
{quizMode === 'teacher' && (
-
-
-
-
-
-
-
-
)}
+
+
+
+
+
+
+
+
)}
diff --git a/client/src/pages/Teacher/ManageRoom/manageRoom.css b/client/src/pages/Teacher/ManageRoom/manageRoom.css
index ffb83fa..ad870a9 100644
--- a/client/src/pages/Teacher/ManageRoom/manageRoom.css
+++ b/client/src/pages/Teacher/ManageRoom/manageRoom.css
@@ -18,8 +18,8 @@
display: flex;
flex-direction: column;
- justify-content: center;
- align-items: center;
+ justify-content: flex-end;
+ align-items: flex-end;
}