-
Notifications
You must be signed in to change notification settings - Fork 31
/
success.html
60 lines (56 loc) · 2.32 KB
/
success.html
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
55
56
57
58
59
60
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<title>Success</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#mynavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand">Lifestyle store</a>
</div>
<div class="collapse navbar-collapse" id="mynavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="cart.html"><span class="glyphicon glyphicon-shopping-cart">Cart</span></a></li>
<li><a href="settings.html"><span class="glyphicon glyphicon-user">Settings</span></a></li>
<li><a href="logout.html"><span class="glyphicon glyphicon-log-out">Logout</span></a></li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<div class="container container_style">
<p>
<h2>Your order is confirmed.Thank you for shopping with us.</h2><br><a href="products.php">Click
here</a> to
purchase any other item.
</p>
</div>
</main>
<footer>
<div class="container">
<center>
Copyright © Lifestyle Store. All Rights Reserved and Contact Us: +91 90000 00000
</center>
</div>
</footer>
</body>
</html>