forked from richasdy/CodeIgniter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.php
More file actions
158 lines (155 loc) · 6.46 KB
/
Copy pathprofile.php
File metadata and controls
158 lines (155 loc) · 6.46 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
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
154
155
156
157
158
<?php
session_start();
include "koneksi.php";
$query = mysqli_query($connect,"SELECT * from profile where id= ' ".$_SESSION["id"]."'");
$data = mysqli_fetch_assoc($query);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Profile | Vietgram</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<nav class="navigation">
<div class="navigation__column">
<a href="feed.php">
<img src="images/logo.png" />
</a>
</div>
<div class="navigation__column">
<i class="fa fa-search"></i>
<input type="text" placeholder="Search">
</div>
<div class="navigation__column">
<ul class="navigations__links">
<li class="navigation__list-item">
<a href="explore." class="navigation__link">
<i class="fa fa-compass fa-lg"></i>
</a>
</li>
<li class="navigation__list-item">
<a href="#" class="navigation__link">
<i class="fa fa-heart-o fa-lg"></i>
</a>
</li>
<li class="navigation__list-item">
<a href="profile.php" class="navigation__link">
<i class="fa fa-user-o fa-lg"></i>
</a>
</li>
</ul>
</div>
</nav>
<main id="profile">
<header class="profile__header">
<div class="profile__column">
<img src="images/avatarr.jpg" />
</div>
<div class="profile__column">
<div class="profile__title">
<h3 class="profile__username"><?php echo $data['username'];?></h3>
<a href="edit-profile.php">Edit profile</a>
<i class="fa fa-cog fa-lg"></i>
</div>
<ul class="profile__stats">
<li class="profile__stat">
<span class="stat__number">4</span> posts
</li>
<li class="profile__stat">
<span class="stat__number">1207</span> followers
</li>
<li class="profile__stat">
<span class="stat__number">12</span> following
</li>
</ul>
<p class="profile__bio">
<span class="profile__full-name">
<?php echo $data['name']; ?>
</span> <?php echo $data['bio']; ?>
<a href="#"><?php echo $data['website']; ?></a>
</p>
</div>
</header>
<section class="profile__photos">
<div class="profile__photo">
<img src="images/feedPhoto1.jpg" />
<div class="profile__photo-overlay">
<span class="overlay__item">
<i class="fa fa-heart"></i>
1020
</span>
<span class="overlay__item">
<i class="fa fa-comment"></i>
3
</span>
</div>
</div>
<div class="profile__photo">
<img src="images/feedPhoto2.jpg" />
<div class="profile__photo-overlay">
<span class="overlay__item">
<i class="fa fa-heart"></i>
486
</span>
<span class="overlay__item">
<i class="fa fa-comment"></i>
344
</span>
</div>
</div>
<div class="profile__photo">
<img src="images/feedPhoto3.jpg" />
<div class="profile__photo-overlay">
<span class="overlay__item">
<i class="fa fa-heart"></i>
486
</span>
<span class="overlay__item">
<i class="fa fa-comment"></i>
344
</span>
</div>
</div>
<div class="profile__photo">
<img src="images/feedPhoto4.jpg" />
<div class="profile__photo-overlay">
<span class="overlay__item">
<i class="fa fa-heart"></i>
486
</span>
<span class="overlay__item">
<i class="fa fa-comment"></i>
344
</span>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__column">
<nav class="footer__nav">
<ul class="footer__list">
<li class="footer__list-item"><a href="#" class="footer__link">About Us</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Support</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Blog</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Press</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Api</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Jobs</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Privacy</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Terms</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Directory</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Language</a></li>
</ul>
</nav>
</div>
<div class="footer__column">
<span class="footer__copyright">© 2017 Vietgram</span>
</div>
</footer>
</body>
</html>