mirror of
https://github.com/axllent/mailpit.git
synced 2025-01-06 00:25:39 +02:00
6a4e5fb03c
See #156
30 lines
663 B
Vue
30 lines
663 B
Vue
<script>
|
|
import AboutMailpit from '../components/AboutMailpit.vue'
|
|
import CommonMixins from '../mixins/CommonMixins'
|
|
|
|
export default {
|
|
mixins: [CommonMixins],
|
|
|
|
components: {
|
|
AboutMailpit,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="h-100 bg-primary d-flex align-items-center justify-content-center my-2 text-white">
|
|
<div class="d-block text-center">
|
|
<RouterLink to="/" class="text-white">
|
|
<img :src="resolve('/mailpit.svg')" alt="Mailpit" style="max-width:80%; width: 100px;">
|
|
<p class="h2 my-3">Page not found</p>
|
|
|
|
<p>Click here to continue</p>
|
|
</RouterLink>
|
|
</div>
|
|
|
|
<div class="d-none">
|
|
<AboutMailpit />
|
|
</div>
|
|
</div>
|
|
</template>
|