+
- {{example.firstName}} {{example.lastName.toUpperCase()}}
+ {{user.firstName}} {{user.lastName.toUpperCase()}}
- E-mail: {{example.email}}
+ E-mail: {{user.email}}
+
+
+ {{user.option}} {{user.role.toUpperCase()}}
+
+
+ Faculty: {{user.faculty}}
+ Role: {{user.role}}
- {{example.option}} {{example.role.toUpperCase()}}
+
+
+
+
+
-
-
+
+
+
Liste des cours
-
- {{item.name}} Teacher: {{item.teacher}} Credits:{{item.credits}}
+
+
+
{{item.name}}
+
{{item.teacher}}
+
Credits:{{item.credits}}
+
+
+
+
+
+
+
+ Liste des cours
+
+
+ {{item.name}}
+
+
+
+
+
+
@@ -104,5 +166,77 @@
width:100%;
margin-bottom:10px;
}
+ .containerElement{
+ justify-content:center;
+ display:grid;
+ grid-template-columns:350px 350px 200px;
+ grid-template-areas:
+ "name teacher credits";
+ column-gap:10px;
+
+ }
+
+ .name {
+ grid-area:name;
+ align-self:center;
+ }
+ .teacher{
+ grid-area:teacher;
+ align-self:center;
+ }
+
+ .credits{
+ grid-area:credits;
+ align-self:center;
+ }
+
+.listTitle{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width:200px;
+ margin-left:auto;
+ margin-right:auto;
+ border:2px solid black;
+ font-size:25px;
+ color:white;
+ padding:20px;
+ background-color:rgb(50,50,50);
+ border-radius:20px;margin-bottom:10px;
+}
+
+.listElement{
+ border:2px solid black;
+ font-size:25px;
+ color:white;
+ padding:20px;
+ background-color:rgb(50,50,50);
+ border-radius:20px;
+ margin-bottom:10px;
+}
+
+.infosContainer {
+padding-bottom:50px;
+border:2px solid black;
+font-size:25px;
+color:white;
+padding:20px;
+background-color:rgb(50,50,50);
+border-radius:20px;
+}
+
+
+button{
+ border:none;
+ background-color:rgb(239, 60, 168);
+ border-radius:10px;
+ height:35px;
+ margin-top:10px;
+
+}
+
+button:hover{
+ opacity:0.8;
+}
diff --git a/frontend/src/Apps/Request.vue b/frontend/src/Apps/Request.vue
index 7b65e80..b8ec6c1 100644
--- a/frontend/src/Apps/Request.vue
+++ b/frontend/src/Apps/Request.vue
@@ -17,8 +17,13 @@
-
-
+
+
+
+
+
+
+
@@ -29,9 +34,9 @@
height:100px;
font-size:20px;
display:grid;
- grid-template-columns:[firstCol-start]100px[firstCol-end secondCol-start]150px[endCol];
+ grid-template-columns:[firstCol-start]100px[firstCol-end secondCol-start]150px[secondCol-end thirdCol-start]200px[thirdCol-end fourthCol-start]150px[fourthCol-end]150px[fifthCol-end]150px[sixthCol-end]150px[endCol];
grid-template-areas:
- " accept refuse";
+ "id type surname firstname infos accept refuse";
column-gap:10px;
}