-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
21 lines (21 loc) · 789 Bytes
/
popup.html
File metadata and controls
21 lines (21 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>LockedIn - Google Sign In</title>
<link rel="stylesheet" href="popup.css">
<script src="popup.js" defer></script>
</head>
<body>
<div class="container">
<h1 style="display: flex; align-items: center; justify-content: center; gap: 10px; color: black;">
LockedIn
<img src="locked-padlock.png" alt="Locked Padlock" style="width: 24px; height: 24px;">
</h1>
<p id="tab-productivity">Waiting for tab info...</p>
<button id="googleSignIn">Sign in with Google</button>
<button id="logoutButton" style="display: none;">Sign Out</button>
<button id="historyButton" style="display: none;">View History</button>
</div>
</body>
</html>