mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-26 23:21:41 +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
442 B
Vue
24 lines
442 B
Vue
<template>
|
|
<div class="hero is-halfheight">
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered">
|
|
<h1 class="title">
|
|
Container not found.
|
|
<small class="subtitle">It may have been removed.</small>
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "ContainerNotFound",
|
|
metaInfo() {
|
|
return {
|
|
title: "Not Found",
|
|
};
|
|
},
|
|
};
|
|
</script>
|