Skip to content

Commit f96fef4

Browse files
authored
Add files via upload
1 parent b4cd5eb commit f96fef4

File tree

11 files changed

+604
-2
lines changed

11 files changed

+604
-2
lines changed

403.shtml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<title>403 - Forbidden</title>
9+
10+
<!-- Tailwind CSS - Output file -->
11+
<link rel="stylesheet" href="/assets/css/output.css">
12+
</head>
13+
14+
<body>
15+
16+
<div class="w-full h-full">
17+
<div class="mx-auto my-auto text-center">
18+
<h1 class="text-2xl">403 - Forbidden</h1>
19+
<p class="text-lg">You do not have permission to access this page.</p>
20+
<p class="text-lg">Requested URL:
21+
<!--#echo var="REQUEST_URI" -->
22+
</p>
23+
</div>
24+
</div>
25+
26+
</body>
27+
28+
</html>

404.shtml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<title>404 - Not found</title>
9+
10+
<!-- Tailwind CSS - Output file -->
11+
<link rel="stylesheet" href="/assets/css/output.css">
12+
</head>
13+
14+
<body>
15+
<div class="w-full h-full">
16+
<div class="mx-auto my-auto text-center">
17+
<h1 class="text-2xl">404 - Not found</h1>
18+
<p class="text-lg">The page you are looking for does not exist.</p>
19+
<p class="text-lg">Requested URL:
20+
<!--#echo var="REQUEST_URI" -->
21+
</p>
22+
</div>
23+
</div>
24+
25+
</body>
26+
27+
</html>

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# php-boilerplate
2-
A simple php boilerplate, hosted on a apache server. Included with tailwind css.
1+
# PHP Boilerplate
2+
3+
Inspired by [Vincent Lammens](https://vincentlammens.be)

assets/css/input.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;

0 commit comments

Comments
 (0)