Skip to content

Commit b8552e6

Browse files
committed
chore: wip
1 parent 57d3cda commit b8552e6

File tree

11 files changed

+66
-0
lines changed

11 files changed

+66
-0
lines changed

resources/views/errors/400.stx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<template>
2+
<div>
3+
<h1>400</h1>
4+
<p>Bad Request</p>
5+
</div>
6+
</template>

resources/views/errors/403.stx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<template>
2+
<div>
3+
<h1>403</h1>
4+
<p>Forbidden</p>
5+
</div>
6+
</template>

resources/views/errors/404.stx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<template>
2+
<div>
3+
<h1>404</h1>
4+
<p>Not Found</p>
5+
</div>
6+
</template>

resources/views/errors/405.stx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<template>
2+
<div>
3+
<h1>405</h1>
4+
<p>Method Not Allowed</p>
5+
</div>
6+
</template>

resources/views/errors/414.stx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<template>
2+
<div>
3+
<h1>414</h1>
4+
<p>URI Too Long</p>
5+
</div>
6+
</template>

resources/views/errors/416.stx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<template>
2+
<div>
3+
<h1>416</h1>
4+
<p>Requested Range Not Satisfiable</p>
5+
</div>
6+
</template>

resources/views/errors/500.stx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<template>
2+
<div>
3+
<h1>500</h1>
4+
<p>Server Error</p>
5+
</div>
6+
</template>

resources/views/errors/501.stx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<template>
2+
<div>
3+
<h1>501</h1>
4+
<p>Not Implemented</p>
5+
</div>
6+
</template>

resources/views/errors/502.stx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<template>
2+
<div>
3+
<h1>502</h1>
4+
<p>Bad Gateway</p>
5+
</div>
6+
</template>

resources/views/errors/503.stx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<template>
2+
<div>
3+
<h1>503</h1>
4+
<p>Service Unavailable</p>
5+
</div>
6+
</template>

0 commit comments

Comments
 (0)