-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditprofile.html
91 lines (91 loc) · 4.32 KB
/
editprofile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile - Stream</title>
<link type="icon/x-icon" rel="logo" href="/IMAGES/just S.png">
<link rel="stylesheet" href="style4.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<style></style>
</head>
<body>
<header>
<nav>
<div class="logo_ul">
<a href="index.html"><img src="IMAGES/logo.png" alt="STREAM"></a>
<ul class="navigation-buttons">
<li class="home"><a href="/index.html" target="_self">Home</a></li>
<li class="movies"><a href="/movies.html" target="_self">Movies</a></li>
<li class="tvshows1"><a href="/tvshows.html" target="_self">TV Shows</a></li>
<li class="kids"><a href="/kids.html" target="_self">Kids</a></li>
<li class="music"><a href="/musicindex.html" target="_self">Music</a></li>
</ul>
<img src="IMAGES/user.png" class="user-pic" onclick="toggleMenu()">
<div class="sub-menu-wrap" id="subMenu">
<div class="sub-menu">
<div class="user-info">
<img src="IMAGES/user.png">
<h2>Stream User</h2>
</div>
<hr>
<a href="#" class="sub-menu-link">
<img src="IMAGES/profile.png">
<p>Edit profile</p>
<span>></span>
</a>
<a href="#" class="sub-menu-link">
<img src="IMAGES/setting.png">
<p>Settings & Privacy</p>
<span>></span>
</a>
<a href="Help & Support.html" class="sub-menu-link">
<img src="IMAGES/help.png">
<p>Help & Support</p>
<span>></span>
</a>
<a href="#" class="sub-menu-link">
<img src="IMAGES/logout.png">
<p>Logout</p>
<span>></span>
</a>
</div>
</div>
<script>
let subMenu = document.getElementById("subMenu");
function toggleMenu(){
subMenu.classList.toggle("open-menu")
}
</script>
</div>
<div class="search_user">
<input type="text" placeholder="Search" id="search_input">
<button type="submit"><i class="bi bi-search"></i></button>
</div>
</nav>
<div class="content">
<h1>Edit Profile</h1>
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="Enter your username"><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email"><br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Enter your password"><br><br>
<button type="submit">Save Changes</button>
</form>
</div>
</header>
<footer>
<div class="social-media">
<a href="#" target="_blank"><i class="bi bi-facebook"></i></a>
<a href="https://twitter.com/@goyamjain02" target="_blank"><i class="bi bi-twitter"></i></a>
<a href="https://www.instagram.com/ilikestream?igsh=MTRsbjhzcmN6c2dqNw==" target="_blank"><i class="bi bi-instagram"></i></a>
<a href="https://youtube.com/@haker-xb7bl?si=DLJ2xuIhu_9ebjAN" target="_blank"><i class="bi bi-youtube"></i></a>
</div>
</footer>
<script src="app1.js"></script>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
</body>
</html>