-
Notifications
You must be signed in to change notification settings - Fork 1
/
profile.html
103 lines (84 loc) · 2.97 KB
/
profile.html
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
<!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</title>
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/profile.css">
<style>
body {
background: rgba(209, 204, 204, 0.281) !important;
}
</style>
</head>
<body>
<header>
<ul>
<div class="logo">
</div>
<li class="search">
<input type="text" name="" id="">
<button></button>
</li>
</ul>
<ul class="right">
<li>
<div class="profile_pic"></div>
</li>
<li class=""> <a href="">
Sanjit
</a></li>
<li><a href="">Home</a></li>
<li><a href="">Create</a></li>
<li><a href="">Friend Requests</a></li>
<li><a href="">Messages</a></li>
<li><a href="">Notifications</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</header>
<section class="main">
<div class="post-section">
<div class="post-upload">
<div class="profile_pic_large"></div>
<form class="" action="profile.php" method="POST" enctype="multipart/form-data">
<div class="uploads">
<textarea name="caption" id="" cols="30" rows="5" placeholder="Write Something"></textarea>
<input href="" class="image" type="file" value="Upload Image" name="image">
</div>
<button class="button" name="submit">Upload</button>
</form>
</div>
<div class="post">
<div class="post_header">
<div class="post_header_left">
<div class="post_username_pic"></div>
<div class="user_block">
<h5>Sanjit</h5>
<h5 class="time">Yeasterday at 9:30</h5>
</div>
<!-- <h1>GGG</h1> -->
</div>
<div class="post_header_right">
<div class="dot"></div>
</div>
</div>
<div class="post_desc">
<h4>Hello, How are You ?</h4>
<div class="post_pic">
<!-- <img src="/uploads/posts/1_8Na6CLIq2Ewl9FZfEHKgoQ(2).jpeg" alt="" srcset="" style="background-image:"> -->
</div>
</div>
<div class="post_reacts">
<a href="">0 LIKES</a>
</div>
</div>
</div>
<div class="notification">
<div class="noti_header">
</div>
</div>
</section>
</body>
</html>