Browse Source

404 503 error default htlm page

master
Walid Bekkal 2 years ago
parent
commit
d1abe1d83e
  1. 0
      public/images/monkey.gif
  2. BIN
      public/testsite/404error.jpeg
  3. BIN
      public/testsite/503error.jpeg
  4. 2
      public/testsite/basique.html
  5. 3
      public/testsite/basique.php
  6. 16
      public/testsite/error404.html
  7. 16
      public/testsite/error503.html

0
public/testsite/sinj.gif → public/images/monkey.gif

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

BIN
public/testsite/404error.jpeg

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
public/testsite/503error.jpeg

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

2
public/testsite/basique.html

@ -19,7 +19,7 @@
document.querySelector('body').innerHTML = '<button class ="second" style="position: fixed; bottom: 0; left: 0; width: 100%; height: 50px; font-size: 20px; background-color: red; color: white;">CLIQUEZ ICI POUR VOIR VOTRE VRAI CADEAU</button>';
const button2 = document.querySelector('button.second');
button2.addEventListener('click', function () {
document.querySelector('body').innerHTML = '<img src="./sinj.gif" style="width: 100%; height: 100%;">';
document.querySelector('body').innerHTML = '<img src="../images/monkey.gif" style="width: 100%; height: 100%;">';
});
});
</script>

3
public/testsite/basique.php

@ -3,7 +3,6 @@
<title>PHP Test</title>
</head>
<body>
<?php echo '<p>Hello World</p>'; ?>
<?php phpinfo(); ?>
<?php echo '<p>PHP page</p>'; ?>
</body>
</html>

16
public/testsite/error404.html

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>404 ERROR</title>
</head>
<body>
<h1>404 ERROR</h1>
<p>there is no page here you monkey, go away</p>
<img src="./404error.jpeg" style="width: 25%; height: 25%;">
<ul>
<li><a href="/docs/">Documents</a></li>
<li><a href="/img/">Images</a></li>
</ul>
</body>
</html>

16
public/testsite/error503.html

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>404 ERROR</title>
</head>
<body>
<h1>503 SERVICE UNAVAILABLE</h1>
<p>sorry for this desagrement, our best engineers are working to better your experience on our website</p>
<img src="./503error.jpeg" style="width: 25%; height: 25%;">
<ul>
<li><a href="/docs/">Documents</a></li>
<li><a href="/img/">Images</a></li>
</ul>
</body>
</html>
Loading…
Cancel
Save