|
|
@@ -91,30 +91,25 @@
|
|
|
:scrollable="true"
|
|
|
class="calendar-modal"
|
|
|
>
|
|
|
- <template v-slot:default="{ isActive }">
|
|
|
- <div class="alt-theme d-flex flex-column align-center">
|
|
|
- <v-card
|
|
|
- title="Inscrivez vous"
|
|
|
- >
|
|
|
- <v-card-text style="height: 70vh;">
|
|
|
- <h4 class="title-inscription text-center mt-4">
|
|
|
- Vous y êtes presque !
|
|
|
- </h4>
|
|
|
-
|
|
|
- <iframe
|
|
|
- :src="webinaireCalendars[selectedWebinar]"
|
|
|
- height="700"
|
|
|
- />
|
|
|
- </v-card-text>
|
|
|
- </v-card>
|
|
|
-
|
|
|
- <v-row>
|
|
|
- <v-col cols="12">
|
|
|
- <v-btn class="close-button" @click="closeModal()"> Fermer </v-btn>
|
|
|
- </v-col>
|
|
|
- </v-row>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
+ <v-card
|
|
|
+ title="Inscrivez vous"
|
|
|
+ class="d-flex flex-column align-center alt-theme"
|
|
|
+ >
|
|
|
+ <v-card-text>
|
|
|
+ <h4 class="title-inscription text-center mt-4">
|
|
|
+ Vous y êtes presque !
|
|
|
+ </h4>
|
|
|
+
|
|
|
+ <iframe
|
|
|
+ :src="webinaireCalendars[selectedWebinar]"
|
|
|
+ height="700"
|
|
|
+ />
|
|
|
+ </v-card-text>
|
|
|
+
|
|
|
+ <v-card-actions>
|
|
|
+ <v-btn class="close-button" @click="closeModal()"> Fermer </v-btn>
|
|
|
+ </v-card-actions>
|
|
|
+ </v-card>
|
|
|
</v-dialog>
|
|
|
</LayoutContainer>
|
|
|
</template>
|
|
|
@@ -238,11 +233,11 @@ const selectedWebinar: Ref<string | null> = ref(null)
|
|
|
|
|
|
const webinaireCalendars: Record<string, string> = {
|
|
|
'Webinaire Artist':
|
|
|
- 'https://widget.weezevent.com/ticket/E920851/?code=62708&locale=fr-FR&width_auto=1&color_primary=0e2d32',
|
|
|
+ 'https://widget.weezevent.com/ticket/E1054691/?code=1227&locale=fr-FR&width_auto=1&color_primary=00AEEF',
|
|
|
'Webinaire School':
|
|
|
- 'https://widget.weezevent.com/ticket/E963899/?code=47365&locale=fr-FR&width_auto=1&color_primary=0e2d32',
|
|
|
+ 'https://widget.weezevent.com/ticket/E1054694/?code=44289&locale=fr-FR&width_auto=1&color_primary=00AEEF',
|
|
|
'Webinaire Manager':
|
|
|
- 'https://widget.weezevent.com/ticket/E923624/?code=4857&locale=fr-FR&width_auto=1&color_primary=0e2d32',
|
|
|
+ 'https://widget.weezevent.com/ticket/E1054695/?code=76806&locale=fr-FR&width_auto=1&color_primary=00AEEF',
|
|
|
}
|
|
|
|
|
|
const showModal = (webinaireTitle: string) => {
|
|
|
@@ -387,6 +382,24 @@ const closeModal = () => {
|
|
|
margin-bottom: 2rem;
|
|
|
}
|
|
|
|
|
|
+ .v-card {
|
|
|
+ border: none !important;
|
|
|
+ box-shadow: none !important;
|
|
|
+ background-color: var(--primary-color) !important;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .v-card-text {
|
|
|
+ width: 90%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ iframe {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
.close-button {
|
|
|
background-color: #e34461; /* TODO: pqoi cette couleur ici? */
|
|
|
color: var(--on-primary-color);
|