-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbprofile.php
153 lines (120 loc) · 5.1 KB
/
bprofile.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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Profile</title>
<!-- Bootstrap core CSS -->
<link href="style/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
header {
padding: 15px;
font-size: 75px;
color: white;
lenght:100%;
}
.cont{
padding-left:30px;
margin:0;
}
.vl {
border-left: 6px solid green;
height: 950px;
}
</style>
</head>
<body>
<!--title and logo-->
<div> <header style="background-color: #242424; ">
<img src="img/KSlogo.png" alt="Logo" style="width:150px;" >
कृषी संपन्न
<a href="aboutus.php"class="btn btn-success float-right"align="right" style="margin:10px;">About us</a>
<a href="blog_out.php" class="btn btn-success float-right"align="right" style="margin:10px;" >Logout</a>
<a href="home.php" class="btn btn-success float-right" align="right" style="margin:10px;" >Home</a>
</header>
<header style="background-color: #74cc5c; padding: 10px; "></header>
</div>
<!-- Page Content -->
<div class="cont">
<div class="row">
<div class="col-lg-3" style="padding-top:20px;">
<h1 class="my-3">OPTIONS</h1>
<div class="list-group">
<a href="bhome.php" class="list-group-item" style= "color:green; font-weight:bold;">HOME</a>
<a href="buploadpro.php" class="list-group-item" style= "color:green; font-weight:bold;">UPLOAD POST</a>
<a href="buploadcon.php" class="list-group-item" style= "color:green; font-weight:bold;">UPLOAD CONTRACT</a>
<a href="bpost.php" class="list-group-item" style= "color:green; font-weight:bold;">VIEW POST</a>
<a href="viewcon.php" class="list-group-item" style= "color:green; font-weight:bold;">VIEW CONTRACT</a>
</div>
</div>
<div class="col-lg-9"style="padding-right:40px;">
<section >
<div class="" style="background:#bfdcae; align:center; font-size:20px;" >
<div class="box" style="background:#bfdcae; align:center;">
<head>
<div class="row"style="paddingleft:20px"><br><div class="col-sm-9" class="image-circle" style="padding-left:350px; padding-top:50px;">
<img src="img/p.png" class="fit-image" style="width:250px;">
</div>
</head><
<br> </br>
<div class="col-sm-9"style="padding-left:60px; padding-top:100px;">
<br><b>NAME : </b>
<font size="+1"><?php echo $_SESSION['Name'];?></font>
</div><br>
<div class="col-sm-9"style="padding-left:60px">
<br><b>USERNAME : </b>
<font size="+1"><?php echo $_SESSION['Username'];?></font>
</div><br>
<div class="col-sm-9"style="padding-left:60px">
<br><b>PHONE NO. : </b>
<font size="+1"><?php echo $_SESSION['Phone_no'];?></font>
</div><br>
<div class="col-sm-9"style="padding-left:60px">
<br><b>ADDRESS : </b>
<font size="+1"><?php echo $_SESSION['address'];?></font>
</div><br>
<div class="col-sm-9"style="padding-left:60px">
<br><b>AADHAR NO. : </b>
<font size="+1"><?php echo $_SESSION['aadhar'];?></font>
</div><br>
<div class="col-sm-3"></div>
</div>
<div class="12u$">
<center>
<div style="align:center; padding-top:100px;">
<a href="beditprofile.php" class="btn btn-success" style="margin:20px;">Edit Profile</a>
<a href="blog_out.php" class="btn btn-success" style="margin:20px;">LOG OUT</a>
</div>
</center>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- /.row -->
</div>
<!-- /.col-lg-9 -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
<!-- Footer -->
<footer class="py-5 bg-dark">
<div class="container"></p>
</div>
<!-- /.container -->
</footer>
<!-- Bootstrap core JavaScript -->
<script src="style/jquery/jquery.min.js"></script>
<script src="style/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>