26 lines
687 B
Vue
26 lines
687 B
Vue
<template>
|
|
<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>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Error',
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|