forked from MTES-MCT/Dossier-Facile-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style(tenant): Update page when tenant link is not found
- Loading branch information
1 parent
a17e348
commit 1bd941a
Showing
4 changed files
with
60 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<template> | ||
<div class="fr-container"> | ||
<div | ||
class="fr-my-2w fr-grid-row fr-grid-row--gutters fr-grid-row--middle fr-grid-row--center" | ||
> | ||
<div class="fr-py-0 fr-col-12 fr-col-md-6"> | ||
<h1>{{ $tc("file.not-found.title") }}</h1> | ||
<p class="fr-text--lead"> | ||
{{ $tc("file.not-found.line1") }} | ||
<br /> | ||
{{ $tc("file.not-found.line2") }} | ||
</p> | ||
</div> | ||
<div | ||
class="fr-col-12 fr-col-md-3 fr-col-offset-md-1 fr-px-6w fr-px-md-0 fr-py-0" | ||
> | ||
<Artwork pictogram="connection-lost" /> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import Artwork from "df-shared/src/components/Artwork.vue"; | ||
import { Component, Vue } from "vue-property-decorator"; | ||
@Component({ | ||
components: { | ||
Artwork, | ||
}, | ||
}) | ||
export default class FileNotFound extends Vue {} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters