2019-12-05 22:27:24 +00:00
|
|
|
<template>
|
2024-01-07 20:44:22 +00:00
|
|
|
<div class="container-fluid px-xl-5 mt-3">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xl-8 offset-xl-2">
|
|
|
|
<div class="card bg-dark text-light mb-2" id="filters">
|
|
|
|
<div class="card-header">
|
|
|
|
<h3 class="text-center">Error</h3>
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<p>Something went wrong. <a href="/">Go back to the start page </a>or contact an admin.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-12-05 22:27:24 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
2023-11-27 00:14:52 +00:00
|
|
|
name: 'Error',
|
2019-12-05 22:27:24 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
2023-08-14 13:42:26 +00:00
|
|
|
</style>
|