-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsuccess_visitor.php
29 lines (26 loc) · 1.17 KB
/
success_visitor.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
26
27
28
29
<?php
require "./header.php";
?>
<!-- hero -->
<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 Successful</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">Visitor added successfully!</p>
<p class="text-gray-800 text-base leading-relaxed mt-8 font-semibold">Click <a href="./visitor.php" class="text-green-600">here</a> to add another</p>
</div>
<!-- hero image -->
<div class="hero-image col-span-6">
<img src="./success.svg" alt="">
</div>
</div>
</div>
</div><!-- end hero -->
<?php
require "./footer.php";
?>