-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.php
54 lines (54 loc) · 2.05 KB
/
error.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
include ('stripe/config.php');
include ("../inc/conn.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="HandheldFriendly" content="True">
<meta name="apple-touch-fullscreen" content="yes"/>
<meta name="MobileOptimized" content="320">
<title>Online Ordering</title>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<!-- navbar -->
<nav class="navbar" style="background-color:#f09d51">
<div class="navbar-center"><img src="../img/logo.png" alt="Indian Brasserie" width="50px" height="50px" />INDIAN BRASSERIE
<div class="cart-btn"> <span class="nav-icon"> <i class="fas fa-cart-plus"></i> </span>
<div class="cart-items">0</div>
</div>
</div>
</nav>
<!-- end of navbar -->
<!-- hero -->
<header class="hero">
<div class="banner">
<div class="row">
<div class="col">
<h1 class="banner-title">Sorry about that.</h1>
<div class="alert alert-danger alert-dismissable fade show" role="alert">
<button type="button" class="close" data-dismiss="alert"> <span aria-hidden="true">×</span> </button>
<h2 class="alert-heading">Payment failed to process!</h2>
</div>
</div>
</div>
</div>
</header>
<!-- End hero -->
<script src="app.js"></script>
</body>
</html>