Close Account
20 | 21 | Are you sure you want to close your account?22 | Closing your account will hide your profile and all your activity from other users.
23 | You can re-open your account at any time by simply logging in.
24 | 25 | 29 | 30 |
├── LICENSE ├── assets ├── css │ ├── bootstrap.css │ ├── jquery.Jcrop.css │ ├── register_style.css │ └── style.css ├── fonts │ ├── Bellota-Bold.otf │ ├── Bellota-BoldItalic.otf │ ├── Bellota-Italic.otf │ ├── Bellota-Light.otf │ ├── Bellota-LightItalic.otf │ └── Bellota-Regular.otf ├── images │ ├── backgrounds │ │ └── desktop.jpg │ ├── icons │ │ ├── loading.gif │ │ └── magnifying_glass.png │ ├── posts │ │ ├── 5947799f01421308Image.jpg │ │ ├── 59477a06cc889harrysImage.jpg │ │ ├── 5bf807e59753dai.jpeg │ │ ├── 5bf8234020124YASWANTH SAI PALAGHAT-1.jpg │ │ ├── 5bf82353605a8YASWANTH SAI PALAGHAT-1.jpg │ │ ├── 5bf8235e383dcYASWANTH SAI PALAGHAT-1.jpg │ │ ├── 5bf82d922d230YASWANTH SAI PALAGHAT (6).png │ │ ├── 5bf830adb24adYASWANTH SAI PALAGHAT (6).png │ │ ├── 5bf83105e99d6YASWANTH SAI PALAGHAT (6).png │ │ ├── 5bf83135d09d6YASWANTH SAI PALAGHAT (6).png │ │ ├── 5bf8314b63566YASWANTH SAI PALAGHAT (6).png │ │ ├── 5bf8315795ff2YASWANTH SAI PALAGHAT (6).png │ │ ├── 5bf831750c46eYASWANTH SAI PALAGHAT (6).png │ │ ├── 5bf8320ead1dfYASWANTH SAI PALAGHAT (6).png │ │ ├── 5bf83abe789afai3.jpg │ │ ├── 5bf83ac82e247ai3.jpg │ │ ├── 5bf83acd30957ai3.jpg │ │ └── 5bfaf25c3f0acai.jpeg │ └── profile_pics │ │ ├── bart_simpson37e241c20f54539e5304221e3cdb301an.jpeg │ │ ├── captain_america42ec2eed5d26bc70eacc842160a47a71n.jpeg │ │ ├── defaults │ │ ├── head_alizarin.png │ │ ├── head_amethyst.png │ │ ├── head_belize_hole.png │ │ ├── head_carrot.png │ │ ├── head_deep_blue.png │ │ ├── head_emerald.png │ │ ├── head_green_sea.png │ │ ├── head_nephritis.png │ │ ├── head_pete_river.png │ │ ├── head_pomegranate.png │ │ ├── head_pumpkin.png │ │ ├── head_red.png │ │ ├── head_sun_flower.png │ │ ├── head_turqoise.png │ │ ├── head_wet_asphalt.png │ │ └── head_wisteria.png │ │ ├── goofy_mouse9ddceb032f4c9ad008be1aa646a18e94n.jpeg │ │ ├── goofy_mousef23548fb257c3489bd35e362e71203c8n.jpeg │ │ ├── homer_simpson411f23038880f46914f888ad170cdce0n.jpeg │ │ ├── homer_simpson96b166fee6674f498f207fdf9b7089c0n.jpeg │ │ ├── little_mac9cfacd93b608dce648d5f43013e3c975n.jpeg │ │ ├── reece_kenney_122c9660b9d1eedcaf99c04ab974cab44n.jpeg │ │ ├── reece_kenney_133159c4b4790562ba0ea8bdefde17261n.jpeg │ │ ├── yaswanth_palaghat47ec7ac91a34019876f060e9045ec9e5n.jpeg │ │ └── yaswanth_palaghat92ed9d1a43632b6a58224c0e21ec70b3n.jpeg └── js │ ├── bootbox.min.js │ ├── bootstrap.js │ ├── demo.js │ ├── jcrop_bits.js │ ├── jquery.Jcrop.js │ └── register.js ├── close_account.php ├── comment_frame.php ├── config └── config.php ├── includes ├── classes │ ├── Message.php │ ├── Notification.php │ ├── Post.php │ └── User.php ├── form_handlers │ ├── delete_post.php │ ├── login_handler.php │ ├── register_handler.php │ └── settings_handler.php ├── handlers │ ├── ajax_delete_message.php │ ├── ajax_friend_search.php │ ├── ajax_load_messages.php │ ├── ajax_load_notifications.php │ ├── ajax_load_posts.php │ ├── ajax_load_profile_posts.php │ ├── ajax_search.php │ ├── ajax_submit_profile_post.php │ └── logout.php └── header.php ├── index.php ├── like.php ├── messages.php ├── post.php ├── profile.php ├── readme.md ├── register.php ├── requests.php ├── search.php ├── settings.php ├── social.sql ├── upload.php └── user_closed.php /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Yaswanth Sai Palaghat 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /assets/css/jquery.Jcrop.css: -------------------------------------------------------------------------------- 1 | /* jquery.Jcrop.css v0.9.12 - MIT License */ 2 | /* 3 | The outer-most container in a typical Jcrop instance 4 | If you are having difficulty with formatting related to styles 5 | on a parent element, place any fixes here or in a like selector 6 | 7 | You can also style this element if you want to add a border, etc 8 | A better method for styling can be seen below with .jcrop-light 9 | (Add a class to the holder and style elements for that extended class) 10 | */ 11 | .jcrop-holder { 12 | direction: ltr; 13 | text-align: left; 14 | } 15 | /* Selection Border */ 16 | .jcrop-vline, 17 | .jcrop-hline { 18 | background: #ffffff url("Jcrop.gif"); 19 | font-size: 0; 20 | position: absolute; 21 | } 22 | .jcrop-vline { 23 | height: 100%; 24 | width: 1px !important; 25 | } 26 | .jcrop-vline.right { 27 | right: 0; 28 | } 29 | .jcrop-hline { 30 | height: 1px !important; 31 | width: 100%; 32 | } 33 | .jcrop-hline.bottom { 34 | bottom: 0; 35 | } 36 | /* Invisible click targets */ 37 | .jcrop-tracker { 38 | height: 100%; 39 | width: 100%; 40 | /* "turn off" link highlight */ 41 | -webkit-tap-highlight-color: transparent; 42 | /* disable callout, image save panel */ 43 | -webkit-touch-callout: none; 44 | /* disable cut copy paste */ 45 | -webkit-user-select: none; 46 | } 47 | /* Selection Handles */ 48 | .jcrop-handle { 49 | background-color: #333333; 50 | border: 1px #eeeeee solid; 51 | width: 7px; 52 | height: 7px; 53 | font-size: 1px; 54 | } 55 | .jcrop-handle.ord-n { 56 | left: 50%; 57 | margin-left: -4px; 58 | margin-top: -4px; 59 | top: 0; 60 | } 61 | .jcrop-handle.ord-s { 62 | bottom: 0; 63 | left: 50%; 64 | margin-bottom: -4px; 65 | margin-left: -4px; 66 | } 67 | .jcrop-handle.ord-e { 68 | margin-right: -4px; 69 | margin-top: -4px; 70 | right: 0; 71 | top: 50%; 72 | } 73 | .jcrop-handle.ord-w { 74 | left: 0; 75 | margin-left: -4px; 76 | margin-top: -4px; 77 | top: 50%; 78 | } 79 | .jcrop-handle.ord-nw { 80 | left: 0; 81 | margin-left: -4px; 82 | margin-top: -4px; 83 | top: 0; 84 | } 85 | .jcrop-handle.ord-ne { 86 | margin-right: -4px; 87 | margin-top: -4px; 88 | right: 0; 89 | top: 0; 90 | } 91 | .jcrop-handle.ord-se { 92 | bottom: 0; 93 | margin-bottom: -4px; 94 | margin-right: -4px; 95 | right: 0; 96 | } 97 | .jcrop-handle.ord-sw { 98 | bottom: 0; 99 | left: 0; 100 | margin-bottom: -4px; 101 | margin-left: -4px; 102 | } 103 | /* Dragbars */ 104 | .jcrop-dragbar.ord-n, 105 | .jcrop-dragbar.ord-s { 106 | height: 7px; 107 | width: 100%; 108 | } 109 | .jcrop-dragbar.ord-e, 110 | .jcrop-dragbar.ord-w { 111 | height: 100%; 112 | width: 7px; 113 | } 114 | .jcrop-dragbar.ord-n { 115 | margin-top: -4px; 116 | } 117 | .jcrop-dragbar.ord-s { 118 | bottom: 0; 119 | margin-bottom: -4px; 120 | } 121 | .jcrop-dragbar.ord-e { 122 | margin-right: -4px; 123 | right: 0; 124 | } 125 | .jcrop-dragbar.ord-w { 126 | margin-left: -4px; 127 | } 128 | /* The "jcrop-light" class/extension */ 129 | .jcrop-light .jcrop-vline, 130 | .jcrop-light .jcrop-hline { 131 | background: #ffffff; 132 | filter: alpha(opacity=70) !important; 133 | opacity: .70!important; 134 | } 135 | .jcrop-light .jcrop-handle { 136 | -moz-border-radius: 3px; 137 | -webkit-border-radius: 3px; 138 | background-color: #000000; 139 | border-color: #ffffff; 140 | border-radius: 3px; 141 | } 142 | /* The "jcrop-dark" class/extension */ 143 | .jcrop-dark .jcrop-vline, 144 | .jcrop-dark .jcrop-hline { 145 | background: #000000; 146 | filter: alpha(opacity=70) !important; 147 | opacity: 0.7 !important; 148 | } 149 | .jcrop-dark .jcrop-handle { 150 | -moz-border-radius: 3px; 151 | -webkit-border-radius: 3px; 152 | background-color: #ffffff; 153 | border-color: #000000; 154 | border-radius: 3px; 155 | } 156 | /* Simple macro to turn off the antlines */ 157 | .solid-line .jcrop-vline, 158 | .solid-line .jcrop-hline { 159 | background: #ffffff; 160 | } 161 | /* Fix for twitter bootstrap et al. */ 162 | .jcrop-holder img, 163 | img.jcrop-preview { 164 | max-width: none; 165 | } 166 | 167 | /* Added my Reece Kenney */ 168 | * { 169 | -webkit-transition: all 0.0s ease-in-out; 170 | -moz-transition: all 0.0s ease-in-out; 171 | } 172 | -------------------------------------------------------------------------------- /assets/css/register_style.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Bellota-LightItalic'; 3 | src: url('../fonts/Bellota-LightItalic.otf'); 4 | } 5 | @font-face { 6 | font-family: 'Bellota-BoldItalic'; 7 | src: url('../fonts/Bellota-BoldItalic.otf'); 8 | } 9 | 10 | html, body { 11 | height: 100%; 12 | min-height: 100%; 13 | } 14 | 15 | form { 16 | text-align: center; 17 | } 18 | 19 | body{ 20 | margin: 0; 21 | padding: 0; 22 | } 23 | 24 | a { 25 | text-decoration: none; 26 | color: #3498db; 27 | } 28 | 29 | .wrapper { 30 | background-image: url("../images/backgrounds/desktop.jpg"); 31 | background-size: 100%; 32 | width: 100%; 33 | height: 100%; 34 | min-width: 950px; 35 | 36 | } 37 | 38 | .login_box { 39 | font-family: 'Bellota-LightItalic', sans-serif; 40 | position: relative; 41 | margin-right: auto; 42 | margin-left: auto; 43 | top: 7%; 44 | width: 55%; 45 | height: 75%; 46 | background-color: #ffffff; 47 | border: 1px solid #EDEDED; 48 | border-radius: 7px; 49 | padding: 5px; 50 | opacity: 0.98; 51 | } 52 | 53 | .login_header { 54 | font-family: 'baufra', sans-serif; 55 | width: 100%; 56 | height: 100px; 57 | background-color: orange; 58 | color: #fff; 59 | text-align: center; 60 | border-top-left-radius: 15px; 61 | border-top-right-radius: 7px; 62 | } 63 | 64 | .login_header h1 { 65 | font-family: 'catamaran', sans-serif; 66 | font-style: bold; 67 | margin-top: 0; 68 | margin-bottom: 0; 69 | color: #2C6C96; 70 | text-shadow: #73B6E2 0.5px 0.5px 0px; 71 | font-size: 350%; 72 | } 73 | 74 | input[type="submit"] { 75 | background-color: #3498db; 76 | border: 1px solid #3498db; 77 | border-radius: 7px; 78 | margin: 5px 0 10px 0; 79 | padding: 5px 10px 5px 10px; 80 | color: #2C6C96; 81 | text-shadow: #73B6E2 0.5px 0.5px 0px; 82 | font-family: 'Bellota-BoldItalic', sans-serif; 83 | font-size: 100%; 84 | } 85 | 86 | input[type="text"], input[type="email"], input[type="password"] { 87 | border: 1px solid #e5e5e5; 88 | margin-top: 5px; 89 | width: 70%; 90 | height: 45px; 91 | margin-bottom: 10px; 92 | padding-left: 5px; 93 | } 94 | 95 | input[type="text"]:hover, input[type="email"]:hover, input[type="password"]:hover { 96 | border-color: #3498db; 97 | } 98 | 99 | #second { 100 | display: none; 101 | } 102 | 103 | 104 | 105 | 106 | -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Bellota-LightItalic'; 3 | src: url('../fonts/Bellota-LightItalic.otf'); 4 | } 5 | @font-face { 6 | font-family: 'Bellota-BoldItalic'; 7 | src: url('../fonts/Bellota-BoldItalic.otf'); 8 | } 9 | 10 | body { 11 | line-height: 17px; 12 | background-color: #E6EAE8; 13 | } 14 | 15 | a { 16 | color: #20AAE5; 17 | text-decoration: none; 18 | } 19 | 20 | .top_bar { 21 | width: 100%; 22 | min-width: 1050px; 23 | height: 40px; 24 | background-color: #2ecc71; 25 | border-bottom: 0.25em solid #efd45f; 26 | margin: 0 0 10px 0; 27 | display: inline-flex; 28 | position: fixed; 29 | z-index: 10; 30 | } 31 | .logo a{ 32 | font-family: 'aharoni', sans-serif; 33 | margin-left: 10px; 34 | font-size: 30; 35 | position: relative; 36 | top: 9px; 37 | text-shadow: #73B6E2 0.5px 0.5px 0px; 38 | color: #1086BA; 39 | } 40 | 41 | a:hover { 42 | text-decoration: none; 43 | } 44 | 45 | nav { 46 | float: right; 47 | right: 1px; 48 | position: absolute; 49 | margin: 10px; 50 | } 51 | 52 | nav a{ 53 | position: relative; 54 | color: #fff; 55 | text-decoration: none; 56 | font-size: 17px; 57 | } 58 | 59 | nav a:hover { 60 | border-bottom: 7px solid #e67e22; 61 | color: #fff; 62 | } 63 | 64 | .wrapper { 65 | margin: 0 auto; 66 | top: 50px; 67 | position: relative; 68 | padding: 0 10px; 69 | width: 75%; 70 | min-width: 950px; 71 | } 72 | 73 | .column { 74 | background-color: #fff; 75 | padding: 10px; 76 | border: 1px solid #D3D3D3; 77 | border-radius: 5px; 78 | box-shadow: 2px 2px 1px #D3D3D3; 79 | z-index: -1; 80 | color: #555; 81 | } 82 | 83 | .user_details { 84 | width: 250px; 85 | float: left; 86 | margin-bottom: 20px; 87 | } 88 | 89 | .user_details img { 90 | height: 120px; 91 | border-radius: 5px; 92 | margin-right: 5px; 93 | } 94 | 95 | .user_details_left_right { 96 | width: 120px; 97 | display: inline-table; 98 | position: absolute; 99 | } 100 | 101 | .main_column { 102 | float:right; 103 | width: 70%; 104 | z-index: -1; 105 | min-height: 170px; 106 | } 107 | 108 | .post_form { 109 | width: 100%; 110 | } 111 | 112 | .post_form textarea { 113 | width: 81%; 114 | height: 60px; 115 | border-radius: 3px; 116 | margin-right: 5px; 117 | border: 1px solid #D3D3D3; 118 | font-size: 12px; 119 | padding: 5px; 120 | } 121 | 122 | textarea:focus { 123 | outline: 0; 124 | } 125 | 126 | .post_form input[type="submit"] { 127 | width: 11%; 128 | height: 60px; 129 | border: none; 130 | border-radius: 3px; 131 | background-color: #3498db; 132 | font-family: 'Bellota-BoldItalic', sans-serif; 133 | color: #1E75CA; 134 | text-shadow: #73B6E2 0.5px 0.5px 0px; 135 | font-size: 90%; 136 | position: absolute; 137 | outline: 0; 138 | margin: 0; 139 | } 140 | 141 | .post_form input[type="submit"]:active { 142 | padding: 5px 4px 4px 5px; 143 | } 144 | 145 | .status_post { 146 | width: 96%; 147 | font-size: 15px; 148 | padding: 0px 5px; 149 | min-height: 75px; 150 | cursor:pointer; 151 | } 152 | 153 | .post_profile_pic { 154 | float: left; 155 | margin-right: 7px; 156 | } 157 | 158 | .post_profile_pic img { 159 | border-radius: 5px; 160 | } 161 | 162 | #comment_iframe { 163 | max-height: 250px; 164 | width: 100%; 165 | margin-top: 5px; 166 | } 167 | 168 | .comment_section { 169 | padding: 0 5px 5px 5px; 170 | } 171 | 172 | .comment_section img { 173 | margin: 0 3px 3px 3px; 174 | border-radius: 3px; 175 | } 176 | 177 | #comment_form textarea { 178 | border-color: #D3D3D3; 179 | width: 85%; 180 | height: 35px; 181 | border-radius: 5px; 182 | color: #616060; 183 | font-size: 14px; 184 | margin: 3px 3px 3px 5px; 185 | } 186 | #comment_form input[type="submit"] { 187 | border:none; 188 | background-color: #20AAE5; 189 | color: #156588; 190 | border-radius: 5px; 191 | width: 13%; 192 | height: 35px; 193 | margin-top: 3px; 194 | position: absolute; 195 | font-family: 'Bellota-BoldItalic', sans-serif; 196 | text-shadow: #73B6E2 0.5px 0.5px 0px; 197 | } 198 | 199 | .newsfeedPostOptions { 200 | padding: 0px; 201 | text-decoration: none; 202 | color:#20AAE5; 203 | border:none; 204 | } 205 | 206 | .newsfeedPostOptions iframe { 207 | border: 0px; 208 | height: 17px; 209 | width: 120px; 210 | } 211 | 212 | .comment_like { 213 | background-color: transparent; 214 | border: none; 215 | font-size: 14px; 216 | color: #3498db; 217 | padding: 0; 218 | height: auto; 219 | width: auto; 220 | margin: 0; 221 | } 222 | 223 | .like_value { 224 | display: inline; 225 | font-size: 14px; 226 | } 227 | 228 | .profile_left { 229 | top: -10px; 230 | width: 17%; 231 | max-width: 240px; 232 | min-width: 130px; 233 | height: 100%; 234 | float: left; 235 | position: relative; 236 | background-color: #37B0E9; 237 | border-right: 10px solid #83D6FE; 238 | color: #CBEAF8; 239 | margin-right: 20px; 240 | } 241 | 242 | .profile_left img { 243 | min-width: 80px; 244 | width: 55%; 245 | margin: 20px; 246 | border: 5px solid #83D6FE; 247 | border-radius: 100px; 248 | } 249 | 250 | .profile_info { 251 | display: list-item; 252 | background-color: #2980b9; 253 | width: 100%; 254 | padding: 10px 0 10px 0; 255 | } 256 | 257 | .profile_info p { 258 | margin: 0 0 0 20px; 259 | word-wrap: break-word; 260 | } 261 | 262 | .danger { 263 | background-color: #e74c3c; 264 | } 265 | .warning { 266 | background-color: #f0ad4e; 267 | } 268 | .default { 269 | background-color: #bdc3c7; 270 | } 271 | .success { 272 | background-color: #2ecc71; 273 | } 274 | .info { 275 | background-color: #3498db; 276 | } 277 | .deep_blue { 278 | background-color: #0043f0; 279 | } 280 | 281 | .profile_left input[type="submit"] { 282 | width: 90%; 283 | height: 30px; 284 | border-radius: 5px; 285 | margin: 7px 0 0 7px; 286 | border: none; 287 | color: #fff; 288 | } 289 | 290 | #accept_button { 291 | width: 20%; 292 | height: 28px; 293 | border-radius: 5px; 294 | margin: 5px; 295 | border: none; 296 | color: #fff; 297 | background-color: #2ecc71; 298 | } 299 | #ignore_button { 300 | width: 20%; 301 | height: 28px; 302 | border-radius: 5px; 303 | margin: 5px; 304 | border: none; 305 | color: #fff; 306 | background-color: #e74c3c; 307 | } 308 | 309 | .delete_button { 310 | height: 22px; 311 | width: 22px; 312 | padding: 0; 313 | float: right; 314 | border-radius: 4px; 315 | right: -15px; 316 | position: relative; 317 | } 318 | 319 | .profile_main_column { 320 | min-width: 675px; 321 | float: left; 322 | width: 70%; 323 | z-index: -1; 324 | 325 | } 326 | 327 | .profile_info_bottom { 328 | margin: 10 0 0 7px; 329 | 330 | } 331 | 332 | #message_textarea { 333 | width: 80%; 334 | margin-right: 8px; 335 | border-radius: 5px; 336 | border: 1px solid #D3D3D3; 337 | font-size: 12px; 338 | } 339 | #message_submit { 340 | height: 41px; 341 | width: 120px; 342 | margin: 0; 343 | position: absolute; 344 | border:none; 345 | background-color: #20AAE5; 346 | color: #156588; 347 | border-radius: 5px; 348 | font-family: 'Bellota-BoldItalic', sans-serif; 349 | text-shadow: #73B6E2 0.5px 0.5px 0px; 350 | } 351 | .message { 352 | border: 1px solid #000; 353 | border-radius: 5px; 354 | padding: 5px 10px; 355 | display: inline-block; 356 | color: #fff; 357 | } 358 | 359 | .message#blue { 360 | background-color: #3498db; 361 | border-color: #2980b9; 362 | float: right; 363 | margin-bottom: 5px; 364 | } 365 | .message#green { 366 | background-color: #2ecc71; 367 | border-color: #27ae60; 368 | float: left; 369 | margin-bottom: 5px; 370 | } 371 | 372 | .loaded_messages { 373 | height: 65%; 374 | min-height: 300px; 375 | max-height: 400px; 376 | overflow: scroll; 377 | margin-bottom: 10px; 378 | } 379 | 380 | .loaded_conversations { 381 | max-height: 216px; 382 | overflow: scroll; 383 | } 384 | 385 | .user_found_messages { 386 | border-bottom: 1px solid #D3D3D3; 387 | padding: 8px 8px 10px 8px; 388 | } 389 | 390 | .user_found_messages:hover { 391 | background-color: #D3D3D3; 392 | } 393 | 394 | .user_found_messages img { 395 | height: 35px; 396 | float: left; 397 | } 398 | 399 | #grey { 400 | color: #8C8C8C; 401 | } 402 | 403 | .resultDisplay { 404 | padding: 5px 5px 0 5px; 405 | height: 70px; 406 | border-bottom: 1px solid #D3D3D3; 407 | } 408 | .resultDisplay a { 409 | float: none; 410 | } 411 | .resultDisplay:hover { 412 | background-color: #EBEBEB; 413 | text-decoration: none; 414 | } 415 | .liveSearchProfilePic img { 416 | height: 50px; 417 | border-radius: 25px; 418 | margin: 1px 12px 0 2px; 419 | float: left; 420 | } 421 | 422 | .liveSearchText { 423 | background-color: transparent; 424 | color: #1E96CA; 425 | } 426 | 427 | .liveSearchText p{ 428 | margin-left: 10px; 429 | font-size: 12px; 430 | } 431 | 432 | .tab-content { 433 | margin-top: 25px; 434 | } 435 | 436 | .dropdown_data_window { 437 | background-color: #fff; 438 | border: 1px solid #DADADA; 439 | border-radius: 0 0 8px 8px; 440 | border-top: none; 441 | width: 300px; 442 | position: absolute; 443 | right: 10px; 444 | top: 40px; 445 | overflow: scroll; 446 | } 447 | 448 | .notification_badge { 449 | padding: 3px 7px; 450 | font-size: 12px; 451 | font-weight: 700; 452 | line-height: 1; 453 | color: #fff; 454 | text-align: center; 455 | white-space: nowrap; 456 | vertical-align: baseline; 457 | background-color: #F00; 458 | border-radius: 10px; 459 | position: absolute; 460 | left: 8px; 461 | top: -5px; 462 | } 463 | 464 | .resultDisplayNotification { 465 | height: auto; 466 | color: #1485BD; 467 | padding-bottom: 7px; 468 | } 469 | 470 | .resultDisplayNotification img { 471 | height: 40px; 472 | border-radius: 5px; 473 | margin: 1px 12px 0px 2px; 474 | float: left; 475 | } 476 | 477 | .timestamp_smaller { 478 | font-size: 85%; 479 | margin: 0; 480 | } 481 | 482 | .search { 483 | margin: 8px 0 0 15%; 484 | } 485 | 486 | .search #search_text_input { 487 | border: thin solid #E5E5E5; 488 | float: left; 489 | height: 23px; 490 | outline: 0; 491 | width: 100px; 492 | border-top-right-radius: 0; 493 | border-bottom-right-radius: 0; 494 | border-top-left-radius: 3px; 495 | border-bottom-left-radius: 3px; 496 | } 497 | 498 | .button_holder { 499 | background-color: #F1F1F1; 500 | border: thin solid #e5e5e5; 501 | cursor: pointer; 502 | float: left; 503 | height: 23px; 504 | text-align: center; 505 | width: 50px; 506 | border-top-right-radius: 3px; 507 | border-bottom-right-radius: 3px; 508 | } 509 | 510 | .button_holder img { 511 | margin-top: 1px; 512 | width: 20px; 513 | } 514 | 515 | .search_results { 516 | background-color: #fff; 517 | border: 1px solid #DADADA; 518 | border-bottom: none; 519 | border-top: none; 520 | margin-top: 21px; 521 | } 522 | 523 | .search_results_footer{ 524 | padding: 7px 4px 0px 4px; 525 | height: 30px; 526 | border: 1px solid #DADADA; 527 | border-top: none; 528 | background-color: #20AAE5; 529 | text-align: center; 530 | } 531 | 532 | .search_results_footer a { 533 | color: #fff; 534 | } 535 | 536 | .search_result { 537 | padding: 10px; 538 | height: 100px; 539 | } 540 | 541 | .searchPageFriendButtons { 542 | float: right; 543 | } 544 | 545 | .searchPageFriendButtons input[type="submit"] { 546 | border: none; 547 | padding: 7px 12px; 548 | border-radius: 5px; 549 | color: #fff; 550 | } 551 | 552 | .result_profile_pic { 553 | float: left; 554 | margin-right: 10px; 555 | } 556 | 557 | #search_hr { 558 | margin-bottom: 0px; 559 | } 560 | 561 | .small_profile_pic { 562 | height: 55px; 563 | margin: 1px 12px 0 2px; 564 | float: left; 565 | } 566 | 567 | #settings_input { 568 | border: 1px solid #ccc; 569 | height: 20px; 570 | padding: 4px 6px; 571 | margin-bottom: 10px; 572 | border-radius: 4px; 573 | font-size: 14px; 574 | line-height: 20px; 575 | } 576 | 577 | .settings_submit { 578 | border: none; 579 | padding: 7px 12px; 580 | border-radius: 5px; 581 | color: #fff; 582 | } 583 | 584 | 585 | .message .deleteButton { 586 | color: #fff; 587 | margin: 0 5px 5px 0; 588 | cursor: pointer; 589 | } 590 | 591 | .postedImage img { 592 | max-height: 300px; 593 | max-width: 100%; 594 | display: block; 595 | margin: 5px auto; 596 | } 597 | 598 | 599 | 600 | 601 | 602 | 603 | -------------------------------------------------------------------------------- /assets/fonts/Bellota-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/fonts/Bellota-Bold.otf -------------------------------------------------------------------------------- /assets/fonts/Bellota-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/fonts/Bellota-BoldItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Bellota-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/fonts/Bellota-Italic.otf -------------------------------------------------------------------------------- /assets/fonts/Bellota-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/fonts/Bellota-Light.otf -------------------------------------------------------------------------------- /assets/fonts/Bellota-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/fonts/Bellota-LightItalic.otf -------------------------------------------------------------------------------- /assets/fonts/Bellota-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/fonts/Bellota-Regular.otf -------------------------------------------------------------------------------- /assets/images/backgrounds/desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/backgrounds/desktop.jpg -------------------------------------------------------------------------------- /assets/images/icons/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/icons/loading.gif -------------------------------------------------------------------------------- /assets/images/icons/magnifying_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/icons/magnifying_glass.png -------------------------------------------------------------------------------- /assets/images/posts/5947799f01421308Image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5947799f01421308Image.jpg -------------------------------------------------------------------------------- /assets/images/posts/59477a06cc889harrysImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/59477a06cc889harrysImage.jpg -------------------------------------------------------------------------------- /assets/images/posts/5bf807e59753dai.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf807e59753dai.jpeg -------------------------------------------------------------------------------- /assets/images/posts/5bf8234020124YASWANTH SAI PALAGHAT-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf8234020124YASWANTH SAI PALAGHAT-1.jpg -------------------------------------------------------------------------------- /assets/images/posts/5bf82353605a8YASWANTH SAI PALAGHAT-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf82353605a8YASWANTH SAI PALAGHAT-1.jpg -------------------------------------------------------------------------------- /assets/images/posts/5bf8235e383dcYASWANTH SAI PALAGHAT-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf8235e383dcYASWANTH SAI PALAGHAT-1.jpg -------------------------------------------------------------------------------- /assets/images/posts/5bf82d922d230YASWANTH SAI PALAGHAT (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf82d922d230YASWANTH SAI PALAGHAT (6).png -------------------------------------------------------------------------------- /assets/images/posts/5bf830adb24adYASWANTH SAI PALAGHAT (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf830adb24adYASWANTH SAI PALAGHAT (6).png -------------------------------------------------------------------------------- /assets/images/posts/5bf83105e99d6YASWANTH SAI PALAGHAT (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf83105e99d6YASWANTH SAI PALAGHAT (6).png -------------------------------------------------------------------------------- /assets/images/posts/5bf83135d09d6YASWANTH SAI PALAGHAT (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf83135d09d6YASWANTH SAI PALAGHAT (6).png -------------------------------------------------------------------------------- /assets/images/posts/5bf8314b63566YASWANTH SAI PALAGHAT (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf8314b63566YASWANTH SAI PALAGHAT (6).png -------------------------------------------------------------------------------- /assets/images/posts/5bf8315795ff2YASWANTH SAI PALAGHAT (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf8315795ff2YASWANTH SAI PALAGHAT (6).png -------------------------------------------------------------------------------- /assets/images/posts/5bf831750c46eYASWANTH SAI PALAGHAT (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf831750c46eYASWANTH SAI PALAGHAT (6).png -------------------------------------------------------------------------------- /assets/images/posts/5bf8320ead1dfYASWANTH SAI PALAGHAT (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf8320ead1dfYASWANTH SAI PALAGHAT (6).png -------------------------------------------------------------------------------- /assets/images/posts/5bf83abe789afai3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf83abe789afai3.jpg -------------------------------------------------------------------------------- /assets/images/posts/5bf83ac82e247ai3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf83ac82e247ai3.jpg -------------------------------------------------------------------------------- /assets/images/posts/5bf83acd30957ai3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bf83acd30957ai3.jpg -------------------------------------------------------------------------------- /assets/images/posts/5bfaf25c3f0acai.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/posts/5bfaf25c3f0acai.jpeg -------------------------------------------------------------------------------- /assets/images/profile_pics/bart_simpson37e241c20f54539e5304221e3cdb301an.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/bart_simpson37e241c20f54539e5304221e3cdb301an.jpeg -------------------------------------------------------------------------------- /assets/images/profile_pics/captain_america42ec2eed5d26bc70eacc842160a47a71n.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/captain_america42ec2eed5d26bc70eacc842160a47a71n.jpeg -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_alizarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_alizarin.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_amethyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_amethyst.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_belize_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_belize_hole.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_carrot.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_deep_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_deep_blue.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_emerald.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_green_sea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_green_sea.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_nephritis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_nephritis.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_pete_river.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_pete_river.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_pomegranate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_pomegranate.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_pumpkin.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_red.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_sun_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_sun_flower.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_turqoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_turqoise.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_wet_asphalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_wet_asphalt.png -------------------------------------------------------------------------------- /assets/images/profile_pics/defaults/head_wisteria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/defaults/head_wisteria.png -------------------------------------------------------------------------------- /assets/images/profile_pics/goofy_mouse9ddceb032f4c9ad008be1aa646a18e94n.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/goofy_mouse9ddceb032f4c9ad008be1aa646a18e94n.jpeg -------------------------------------------------------------------------------- /assets/images/profile_pics/goofy_mousef23548fb257c3489bd35e362e71203c8n.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/goofy_mousef23548fb257c3489bd35e362e71203c8n.jpeg -------------------------------------------------------------------------------- /assets/images/profile_pics/homer_simpson411f23038880f46914f888ad170cdce0n.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/homer_simpson411f23038880f46914f888ad170cdce0n.jpeg -------------------------------------------------------------------------------- /assets/images/profile_pics/homer_simpson96b166fee6674f498f207fdf9b7089c0n.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/homer_simpson96b166fee6674f498f207fdf9b7089c0n.jpeg -------------------------------------------------------------------------------- /assets/images/profile_pics/little_mac9cfacd93b608dce648d5f43013e3c975n.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/little_mac9cfacd93b608dce648d5f43013e3c975n.jpeg -------------------------------------------------------------------------------- /assets/images/profile_pics/reece_kenney_122c9660b9d1eedcaf99c04ab974cab44n.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/reece_kenney_122c9660b9d1eedcaf99c04ab974cab44n.jpeg -------------------------------------------------------------------------------- /assets/images/profile_pics/reece_kenney_133159c4b4790562ba0ea8bdefde17261n.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/reece_kenney_133159c4b4790562ba0ea8bdefde17261n.jpeg -------------------------------------------------------------------------------- /assets/images/profile_pics/yaswanth_palaghat47ec7ac91a34019876f060e9045ec9e5n.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/yaswanth_palaghat47ec7ac91a34019876f060e9045ec9e5n.jpeg -------------------------------------------------------------------------------- /assets/images/profile_pics/yaswanth_palaghat92ed9d1a43632b6a58224c0e21ec70b3n.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaswanthpalaghat/Social-Network-using-php-and-mysql/6b2a512b2c6d147b423c9d8f4997b7c97cd77c93/assets/images/profile_pics/yaswanth_palaghat92ed9d1a43632b6a58224c0e21ec70b3n.jpeg -------------------------------------------------------------------------------- /assets/js/bootbox.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * bootbox.js v4.4.0 3 | * 4 | * http://bootboxjs.com/license.txt 5 | */ 6 | !function(a,b){"use strict";"function"==typeof define&&define.amd?define(["jquery"],b):"object"==typeof exports?module.exports=b(require("jquery")):a.bootbox=b(a.jQuery)}(this,function a(b,c){"use strict";function d(a){var b=q[o.locale];return b?b[a]:q.en[a]}function e(a,c,d){a.stopPropagation(),a.preventDefault();var e=b.isFunction(d)&&d.call(c,a)===!1;e||c.modal("hide")}function f(a){var b,c=0;for(b in a)c++;return c}function g(a,c){var d=0;b.each(a,function(a,b){c(a,b,d++)})}function h(a){var c,d;if("object"!=typeof a)throw new Error("Please supply an object of options");if(!a.message)throw new Error("Please specify a message");return a=b.extend({},o,a),a.buttons||(a.buttons={}),c=a.buttons,d=f(c),g(c,function(a,e,f){if(b.isFunction(e)&&(e=c[a]={callback:e}),"object"!==b.type(e))throw new Error("button with key "+a+" must be an object");e.label||(e.label=a),e.className||(e.className=2>=d&&f===d-1?"btn-primary":"btn-default")}),a}function i(a,b){var c=a.length,d={};if(1>c||c>2)throw new Error("Invalid argument length");return 2===c||"string"==typeof a[0]?(d[b[0]]=a[0],d[b[1]]=a[1]):d=a[0],d}function j(a,c,d){return b.extend(!0,{},a,i(c,d))}function k(a,b,c,d){var e={className:"bootbox-"+a,buttons:l.apply(null,b)};return m(j(e,d,c),b)}function l(){for(var a={},b=0,c=arguments.length;c>b;b++){var e=arguments[b],f=e.toLowerCase(),g=e.toUpperCase();a[f]={label:d(g)}}return a}function m(a,b){var d={};return g(b,function(a,b){d[b]=!0}),g(a.buttons,function(a){if(d[a]===c)throw new Error("button key "+a+" is not allowed (options are "+b.join("\n")+")")}),a}var n={dialog:"
Comment Posted!
"; 89 | } 90 | ?> 91 | 95 | 96 | 97 | diff($end_date); //Difference between dates 116 | if($interval->y >= 1) { 117 | if($interval == 1) 118 | $time_message = $interval->y . " year ago"; //1 year ago 119 | else 120 | $time_message = $interval->y . " years ago"; //1+ year ago 121 | } 122 | else if ($interval->m >= 1) { 123 | if($interval->d == 0) { 124 | $days = " ago"; 125 | } 126 | else if($interval->d == 1) { 127 | $days = $interval->d . " day ago"; 128 | } 129 | else { 130 | $days = $interval->d . " days ago"; 131 | } 132 | 133 | 134 | if($interval->m == 1) { 135 | $time_message = $interval->m . " month". $days; 136 | } 137 | else { 138 | $time_message = $interval->m . " months". $days; 139 | } 140 | 141 | } 142 | else if($interval->d >= 1) { 143 | if($interval->d == 1) { 144 | $time_message = "Yesterday"; 145 | } 146 | else { 147 | $time_message = $interval->d . " days ago"; 148 | } 149 | } 150 | else if($interval->h >= 1) { 151 | if($interval->h == 1) { 152 | $time_message = $interval->h . " hour ago"; 153 | } 154 | else { 155 | $time_message = $interval->h . " hours ago"; 156 | } 157 | } 158 | else if($interval->i >= 1) { 159 | if($interval->i == 1) { 160 | $time_message = $interval->i . " minute ago"; 161 | } 162 | else { 163 | $time_message = $interval->i . " minutes ago"; 164 | } 165 | } 166 | else { 167 | if($interval->s < 30) { 168 | $time_message = "Just now"; 169 | } 170 | else { 171 | $time_message = $interval->s . " seconds ago"; 172 | } 173 | } 174 | 175 | $user_obj = new User($con, $posted_by); 176 | 177 | 178 | ?> 179 |
184 |