-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfailure.php
25 lines (21 loc) · 930 Bytes
/
failure.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
require 'header.php';
echo' <div class="hero bg-gray-100 py-16 h-screen">
<!-- container -->
<div class="container px-4 sm:px-8 lg:px-16 xl:px-20 mx-auto">
<!-- hero wrapper -->
<div class="hero-wrapper grid grid-cols-1 md:grid-cols-12 gap-8 items-center">
<!-- hero text -->
<div class="hero-text col-span-6">
<h1 class=" font-bold text-4xl md:text-5xl max-w-xl text-gray-900 leading-tight">Operation Failed</h1>
<hr class=" w-12 h-1 bg-indigo-500 rounded-full mt-8">
<p class="text-gray-800 text-base leading-relaxed mt-8 font-semibold">Access Denied</p>
</div>
<!-- hero image -->
<div class="hero-image col-span-6">
<img src="./failure.svg" alt="">
</div>
</div>
</div>
</div>';
require'footer.php';?>