-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.php
More file actions
34 lines (23 loc) · 776 Bytes
/
Copy pathsuccess.php
File metadata and controls
34 lines (23 loc) · 776 Bytes
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
30
31
32
33
34
<?php include 'inc/header.php'; ?>
<?php
$login = Session::get("cuslogin");
if ($login == false) {
header("Location:login.php");
}
?>
<style>
.payment{width: 500px;min-height:200px;text-align: center;border: 1px solid #ddd;margin: 0 auto; padding:50px; }
.payment h2{border-bottom: 2px solid #ddd;margin-bottom: 40px;padding-bottom: 10px;}
.payment p{line-height: 25px;}
</style>
<div class="main">
<div class="content">
<div class="section group">
<div class="payment">
<h2>Uspjesno! </h2>
<p> Hvala na kupovini. Kontaktiraćemo Vas uskoro. Evo detalja vaše narudžbine:<a href="order.php"> Ovdje </a> </p>
</div>
</div>
</div>
</div>
<?php include 'inc/footer.php'; ?>