Skip to content

Commit

Permalink
Lifestyle-Ecommerce-Website
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarandeep97 committed Mar 3, 2018
0 parents commit 1ed2761
Show file tree
Hide file tree
Showing 42 changed files with 10,679 additions and 0 deletions.
63 changes: 63 additions & 0 deletions Cart.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!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>Cart</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet" >

</head>
<body>
<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>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="table-responsive table-condensed table_style">
<table class="table table-bordered table-striped table-hover">
<tbody>
<tr><th>Item Number</th><th>Item Name</th><th>Price</th><th></th></tr>
<tr></tr>
<tr><td></td><td>Total</td><td>Rs.0</td><td><a href="success.html"><button class="btn btn-primary">Confirm Order</button></a></td></tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<center>
Copyright © Lifestyle Store. All Rights Reserved and Contact Us: +91 90000 00000
</center>
</div>
</footer>

</body>
</html>
65 changes: 65 additions & 0 deletions Settings.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!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>Settings</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet" >
</head>
<body>
<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="setting.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>
<div class="container">
<div class="row row_style">
<div class="col-md-4 col-md-offset-4">
<form>
<p><h4>Change Password</h4></p>
<div class="form-group">
<input type="password" class="form-control" placeholder="Old Password">
</div>
<div class="form-group">
<input type="password" class="form-control" placeholder="New Password">
</div>
<div class="form-group">
<input type="password" class="form-control" placeholder="Re-type New Password">
</div>
<button class="btn btn-primary">Change</button>
</form>
</div>
</div>
</div>
<footer>
<div class="container">
<center>
Copyright © Lifestyle Store. All Rights Reserved and Contact Us: +91 90000 00000
</center>
</div>
</footer>
</body>
</html>
Loading

0 comments on commit 1ed2761

Please sign in to comment.