Skip to content

Commit

Permalink
Page confirmation emails ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentlaine committed May 30, 2024
1 parent b2fb252 commit 79f1622
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/carte/Wrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const currentDate = new Date();
<template>
<div :class="embedded ? '' : 'carte-wrapper fr-py-4w'">
<div class="fr-container">
<div v-if="!embedded" class="fr-mb-4w">
<div class="fr-mb-4w">
<div class="fr-col-12 fr-col-lg-9 fr-grid-row fr-grid-row--middle header-wrapper">
<h2 class="fr-mb-0">Carte et historique</h2>
<div class="full-width fr-hidden-lg" />
Expand Down
28 changes: 28 additions & 0 deletions client/pages/emails/index.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<script setup lang="ts">
definePageMeta({
layout: 'basic',
});
const appName = useRuntimeConfig().public.appName;
useHead({
title: `Emails - ${appName}`,
});
</script>

<template>
<div class="fr-container">
<h1 class="text-align-center">Merci</h1>
<div class="fr-grid-row fr-grid-row--gutters fr-grid-row--middle">
<div class="fr-col-3 text-align-right">
<img src="/emails_popcorn.png"
style="max-width: 100%"
height="100"
title="Image d'illustration popcorn"
/>
</div>
<div class="fr-col-9">
Retrouvez notre prochain épisode le samedi 15 juin dans votre boite email !
</div>
</div>
</div>
</template>
Binary file added client/public/emails_popcorn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 79f1622

Please sign in to comment.