-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
35 lines (35 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Profile Page</title>
</head>
<body onload="loadData()">
<script src="authScript.js"></script>
<header>
<div class="grid-wrapper">
<h1 id="name"><a href="index.html" class="link">OMDb</a></h1>
</div>
</header>
<div class="grid-wrapper">
<div class="main-container">
<div class="flex-container tab">
<button class="tab-btn tablink active" id="profile-btn" onclick="openTab(event, 'profile-tab')">Profile</button>
<button class="tab-btn tablink" id="bookmark-btn" onclick="openTab(event, 'bookmark-tab')">Bookmarks</button>
</div>
<div class="tabcontent" style="display: block;"id="profile-tab">
<h1>Profile</h1>
<h3 id="email_header">Email</h3>
<button onclick="logout()" class="submit-btn">logout</button>
</div>
<div class="tabcontent" id="bookmark-tab">
<h1>Bookmarked Movies</h1>
</div>
</div>
</div>
<script src="profileScript.js"></script>
<script src="script.js"></script>
</body>
</html>