mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-31 01:57:21 +01:00
* Starting work for auth * Adds flags * Does redirect * Refactors code * Adds vue templates * Completes logic * Cleans up some of the error messages * Refactors * Updates readme * Updates titles * Adds logout * Cleans up imports
24 lines
420 B
Vue
24 lines
420 B
Vue
<template>
|
|
<div class="hero is-halfheight">
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered">
|
|
<h1 class="title">
|
|
Oops,
|
|
<small class="subtitle">this page doesn't exist</small>
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "PageNotFound",
|
|
metaInfo() {
|
|
return {
|
|
title: "404 Error",
|
|
};
|
|
},
|
|
};
|
|
</script>
|