Added go back button
This commit is contained in:
parent
949a4b2cf5
commit
32b6c33628
|
@ -17,10 +17,11 @@
|
||||||
<p class="subtitle has-text-centered has-text-weight-light">Access to resource forbidden</p>
|
<p class="subtitle has-text-centered has-text-weight-light">Access to resource forbidden</p>
|
||||||
<div class="is-divider"></div>
|
<div class="is-divider"></div>
|
||||||
<p class="buttons is-centered">
|
<p class="buttons is-centered">
|
||||||
<a href="/" class="button is-rounded">
|
<button class="button is-rounded" onclick="goBack()"><i class="fas fa-chevron-left fa-lg"></i> Go back</button>
|
||||||
<i class="fas fa-arrow-left fa-lg"></i> Return to homepage
|
<a href="/" class="button is-rounded">
|
||||||
</a>
|
<i class="fas fa-chevron-up fa-lg"></i> Return to homepage
|
||||||
</p>
|
</a>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -17,8 +17,9 @@
|
||||||
<p class="subtitle has-text-centered has-text-weight-light">Resource not found</p>
|
<p class="subtitle has-text-centered has-text-weight-light">Resource not found</p>
|
||||||
<div class="is-divider"></div>
|
<div class="is-divider"></div>
|
||||||
<p class="buttons is-centered">
|
<p class="buttons is-centered">
|
||||||
|
<button class="button is-rounded" onclick="goBack()"><i class="fas fa-chevron-left fa-lg"></i> Go back</button>
|
||||||
<a href="/" class="button is-rounded">
|
<a href="/" class="button is-rounded">
|
||||||
<i class="fas fa-arrow-left fa-lg"></i> Return to homepage
|
<i class="fas fa-chevron-up fa-lg"></i> Return to homepage
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -17,8 +17,9 @@
|
||||||
<p class="subtitle has-text-centered has-text-weight-light">Internal Server Error</p>
|
<p class="subtitle has-text-centered has-text-weight-light">Internal Server Error</p>
|
||||||
<div class="is-divider"></div>
|
<div class="is-divider"></div>
|
||||||
<p class="buttons is-centered">
|
<p class="buttons is-centered">
|
||||||
|
<button class="button is-rounded" onclick="goBack()"><i class="fas fa-chevron-left fa-lg"></i> Go back</button>
|
||||||
<a href="/" class="button is-rounded">
|
<a href="/" class="button is-rounded">
|
||||||
<i class="fas fa-arrow-left fa-lg"></i> Return to homepage
|
<i class="fas fa-chevron-up fa-lg"></i> Return to homepage
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -26,5 +27,12 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
<footer>
|
||||||
|
<script>
|
||||||
|
function goBack() {
|
||||||
|
window.history.back();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue