mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
100 lines
2.4 KiB
Vue
100 lines
2.4 KiB
Vue
<template>
|
|
<div>
|
|
<!-- Desktop header -->
|
|
<header v-if="! $root.isMobile" class="d-flex flex-wrap justify-content-center py-3 mb-3 border-bottom">
|
|
<router-link to="/" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none">
|
|
<object class="bi me-2 ms-4" width="40" height="40" data="/icon.svg" />
|
|
<span class="fs-4 title">Uptime Kuma</span>
|
|
</router-link>
|
|
</header>
|
|
|
|
<!-- Mobile header -->
|
|
<header v-else class="d-flex flex-wrap justify-content-center pt-2 pb-2 mb-3">
|
|
<router-link to="/dashboard" class="d-flex align-items-center text-dark text-decoration-none">
|
|
<object class="bi" width="40" height="40" data="/icon.svg" />
|
|
<span class="fs-4 title ms-2">Uptime Kuma</span>
|
|
</router-link>
|
|
</header>
|
|
|
|
<div class="content">
|
|
<div>
|
|
<strong>🐻 {{ $t("Page Not Found") }}</strong>
|
|
</div>
|
|
|
|
<div class="guide">
|
|
Most likely causes:
|
|
<ul>
|
|
<li>The resource is no longer available.</li>
|
|
<li>There might be a typing error in the address.</li>
|
|
</ul>
|
|
|
|
What you can try:<br />
|
|
<ul>
|
|
<li>Retype the address.</li>
|
|
<li><a href="#" class="go-back" @click="goBack()">Go back to the previous page.</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
async mounted() {
|
|
|
|
},
|
|
methods: {
|
|
goBack() {
|
|
history.back();
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "../assets/vars.scss";
|
|
|
|
.go-back {
|
|
text-decoration: none;
|
|
color: $primary !important;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
gap: 50px;
|
|
padding-top: 30px;
|
|
|
|
strong {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
|
|
.guide {
|
|
max-width: 800px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.dark {
|
|
header {
|
|
background-color: $dark-header-bg;
|
|
border-bottom-color: $dark-header-bg !important;
|
|
|
|
span {
|
|
color: #f0f6fc;
|
|
}
|
|
}
|
|
|
|
.bottom-nav {
|
|
background-color: $dark-bg;
|
|
}
|
|
}
|
|
</style>
|