forked from p-m-project/medium-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
129 lines (111 loc) · 4.85 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/profile.css">
</head>
<body>
<nav class="nav-signin">
<nav class="nav-container">
<div >
<div class="nav-icon">
<div class="icon-title">
<!-- this tag always links to the home page-->
<a href="/">
<img src="media/MEDIUM-SBU34.png">
</a>
</div>
</div>
</div>
<div class="nav-space"></div>
<div class="nav-links" style="width: fit-content;">
<div class="navbar-profile-container" >
<a onclick="showProfileMenu()">
<img src="media/profile1.jpg" alt="" class="nav-profile">
</a>
<div class="navbar-profile-links" style="display: none;">
<div class="navbar-profile-show">
<div class="nav-profile"><img src="media/profile1.jpg" alt="" class="nav-profile"></div>
<div class="navbar-profile-info">
<p class="navbar-profile-username"><b>name</b></p>
<p class="navbar-profile-mail">[email protected]</p>
</div>
</div>
<a href="/new-story" >New Story</a>
<a href="/stories-page">Stories</a>
<a href="#setting">Setting</a>
<a href="/profile">Saved Articles</a>
<a href="/signin-page">Sign Out</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
</div>
<div class="search-container">
<form action="/action_page.php">
<input type="text" placeholder="Search.." name="search">
<button type="submit"><i class="fa fa-search"></i></button>
</form>
</div>
</div>
</nav>
</nav>
<div class="profile-top">
<div class="profile-image">
<form runat="server" class="profile-img-form">
<input type='file' id="imgInp" />
<img id="blah" src="media/post3.jpg" alt="Nature" class="responsive" />
</form>
</div>
</div>
<div class="all-part-profile">
<div class="profile">
<div class="profile-about">
<label for="input-َAbout">About</label>
</div>
<div class="profile-name">
<label for="input-name">name:</label><br>
<input type="text" name="Iname" id="input-name" class="btn">
</div>
<div class="profile-username">
<label for="input-username">username:</label><br>
<input type="text" name="Iname" id="input-username" class="btn">
</div>
<div class="profile-bio">
<label for="input-bio">bio:</label><br>
<input type="text" name="Iname" id="input-bio" class="btn">
</div>
<div class="profile-gmail">
<label for="input-gmail">gmail:</label><br>
<input type="text" name="Iname" id="input-gmail" class="btn">
</div>
<!-- *******************************part profile -->
<div class="security">
<label for="input-security">Security</label>
</div>
<div class="security-password">
<label for="input-password">password:</label><br>
<input type="text" name="Iname" id="input-password" class="btn">
</div>
<div class="security-new-password">
<label for="input-new-password">new password:</label><br>
<input type="text" name="Iname" id="input-new-password" class="btn">
</div>
<div class="security-confirm-new-password">
<label for="input-confirm-new-password">confirm new password:</label><br>
<input type="text" name="Iname" id="input-confirm-new-password" class="btn">
</div>
<div class="save">
<button class="btn btn-submit">Save</button>
</div>
</div>
</div>
<script src="js/nav.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="js/profile.js"></script>
</body>
</html>