-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditPage.html
62 lines (53 loc) · 2.21 KB
/
editPage.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
<!-- ******************************** This page is done by Chayma Boukthir ******************************** -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./style/editPage.css">
<link rel="stylesheet" href="./style/homePage.css">
<link rel="stylesheet" href="./style/userPage.css">
<title>TuniBest | Watch Movies Online Free on Tunibest</title>
</head>
<body>
<!-- The navigation bar -->
<nav>
<a href="homePage.html"><img height="30px" src="./assets/logo.png" alt="logo"></a>
<div class="searchBar">
<input class="search-input" type="text" placeholder="Search for a movie" name="" value="">
<img class="search-icon" width="15px" src="./assets/search-icon.png" alt="search icon">
</div>
<a href="userPage.html">
<img height="40px" src="./assets/avatar.png" alt="profile">
<p>Salim Ben Hammadi</p>
</a>
</nav>
<!-- The main body -->
<section class="MainBody">
<div class="subtitle">Edit Profile</div>
<section class="watchList">
<!-- the side bar navigation : where user can navigate to watch list page or edit profile page -->
<aside class="loginlist">
<ul>
<li><a href="userPage.html">Watch List</a></li>
<li><a href="editPage.html">Edit Profile</a></li>
<li><a href="addMoviePage.html">Add a Movie</a></li>
</ul>
</aside>
<div id="path">
<p>Home / User /<span style="font-size:0.8em"><i><small> Salim07</small></i></span></p>
</div>
<!-- The from: where user can edit his information -->
<form>
<label for="username">Username:</label><br>
<input type="text" placeholder="username" id="username" name="username"><br><br>
<label for="email">Email:</label><br>
<input type="email" placeholder="[email protected]" id="email" name="email"><br><br>
<label for="password">Password:</label><br>
<input type="password" placeholder="**********" id="password"><br><br>
<label for="password">Password Confirmation:</label><br>
<input type="password" placeholder="**********" id="password"><br><br>
</form>
</select>
</section>
</body>
</html>