Added go back button
This commit is contained in:
parent
949a4b2cf5
commit
32b6c33628
|
@ -17,8 +17,9 @@
|
|||
<p class="subtitle has-text-centered has-text-weight-light">Access to resource forbidden</p>
|
||||
<div class="is-divider"></div>
|
||||
<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">
|
||||
<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>
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -17,8 +17,9 @@
|
|||
<p class="subtitle has-text-centered has-text-weight-light">Resource not found</p>
|
||||
<div class="is-divider"></div>
|
||||
<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">
|
||||
<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>
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -17,8 +17,9 @@
|
|||
<p class="subtitle has-text-centered has-text-weight-light">Internal Server Error</p>
|
||||
<div class="is-divider"></div>
|
||||
<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">
|
||||
<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>
|
||||
</p>
|
||||
</div>
|
||||
|
@ -26,5 +27,12 @@
|
|||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<footer>
|
||||
<script>
|
||||
function goBack() {
|
||||
window.history.back();
|
||||
}
|
||||
</script>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue