-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser_Homepage.php
More file actions
88 lines (78 loc) · 2.48 KB
/
User_Homepage.php
File metadata and controls
88 lines (78 loc) · 2.48 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
session_start();
include ("UserSearch.php");
if(isset($_SESSION["username"])){
$username=$_SESSION["username"];
$year=$_SESSION["year"];
}
else
$username="User";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home Page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="cssnewfie.css">
<script src="js/bootstrap.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<style>
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
width: 70%;
margin: auto;
}
</style>
</head>
<body>
<!-- <div class="jumbotron text-center">
<img src="Images\books-stack.png" alt="Logo">
<h1>VJTI Book Exchange</h1>
<p>A website where VJTI's students can buy and sell Engineering Books!</p>
</div>-->
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="User_Homepage.php">VJTI Book Exchange</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="About_us.php">About Us</a></li>
<li><a href="User_Buypage.php">Buy</a></li>
<li><a href="User_Sellpage.php">Sell</a></li>
<?php include ("Usernavbar.php");?>
</ul>
</div>
</nav>
<div class="container-fluid text-center">
<div class="row content">
<?php include ("user_sidenav.php");?>
<div class="col-sm-8 text-left uhome">
<h1>Welcome</h1>
<h3> <?php echo $_SESSION['username'];?></h3>
<p>Are you are sick of searching for Juniors to sell your last years Books?<br/>
Are you sick of finding Seniors from whom you could buy books at a price much less than its normal price?<br/>
Then my friend you are at the right place.VJTI Book Exchange is the website which would do this for you! </p>
<hr>
<!-- <h2>Some of the Recently Uploaded Books:</h2>-->
<?php /*include("Uhome.php");*/
?>
<p></p>
</div>
<div class="col-sm-2 sidenav">
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
</div>
</div>
</div>
<?php include("footer.php");?>
</body>
</html>