Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #21 from GuillaumeDorschner/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
GuillaumeDorschner committed Oct 25, 2023
2 parents 57ae960 + 5b75194 commit 19476c5
Show file tree
Hide file tree
Showing 4 changed files with 252 additions and 175 deletions.
20 changes: 10 additions & 10 deletions client/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -378,27 +378,27 @@
class="mb-2 h-24 w-24 overflow-hidden rounded-full bg-gray-200 shadow-lg md:mb-4 md:h-32 md:w-32"
>
<img
src="/person/fatima.jpeg"
src="/person/vivien.png"
alt="Vivien Deblock"
loading="lazy"
alt="Fatima-Zahra Bekraoui"
class="h-full w-full object-cover object-center"
/>
</div>

<div>
<div class="text-center font-bold text-primary md:text-lg">
Fatima-Zahra Bekraoui
Vivien Deblock
</div>
<p
class="mb-3 text-center text-sm text-gray-500 md:mb-4 md:text-base"
>
Rapporteur
Communications Manager
</p>

<div class="flex justify-center">
<div class="flex gap-4">
<a
href="https://www.linkedin.com/in/fatima-zahra-bekraoui-342505210/"
href="https://www.linkedin.com/in/vivien-deblock-36162222b/"
target="_blank"
class="text-gray-400 transition duration-100 hover:text-gray-500 active:text-gray-600"
>
Expand Down Expand Up @@ -472,27 +472,27 @@
class="mb-2 h-24 w-24 overflow-hidden rounded-full bg-gray-200 shadow-lg md:mb-4 md:h-32 md:w-32"
>
<img
src="/person/vivien.png"
alt="Vivien Deblock"
src="/person/fatima.jpeg"
loading="lazy"
alt="Fatima-Zahra Bekraoui"
class="h-full w-full object-cover object-center"
/>
</div>

<div>
<div class="text-center font-bold text-primary md:text-lg">
Vivien Deblock
Fatima-Zahra Bekraoui
</div>
<p
class="mb-3 text-center text-sm text-gray-500 md:mb-4 md:text-base"
>
Communications Manager
Rapporteur
</p>

<div class="flex justify-center">
<div class="flex gap-4">
<a
href="https://www.linkedin.com/in/vivien-deblock-36162222b/"
href="https://www.linkedin.com/in/fatima-zahra-bekraoui-342505210/"
target="_blank"
class="text-gray-400 transition duration-100 hover:text-gray-500 active:text-gray-600"
>
Expand Down
5 changes: 3 additions & 2 deletions client/src/routes/signup/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,13 @@
goto("/home");
} else {
const errorData = await response.json();
console.log("signup failed:", errorData.error);
console.log("signup failed:", errorData.message);
showAlert = true;
validationError = errorData.error || "signup failed";
validationError = errorData.message || "signup failed";
}
} catch (error) {
console.log("signup request failed:", error);
console.log(error);
showAlert = true;
validationError = "Something went wrong. Please try again later.";
}
Expand Down
Binary file added client/static/person/fatima.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 19476c5

Please sign in to comment.