-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
60 lines (57 loc) · 2.76 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TokenEase</title>
<link rel="stylesheet" href="popup.css">
<script src="popup.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;800" rel="stylesheet">
</head>
<body>
<div class="all">
<div class="top">
<button class="n1">TokenLogin</button>
<button class="n2">SavedAccounts</button>
<button class="n3">Credits</button>
</div>
<div class="bottom">
<div class="part part1 tokenlogin">
<input spellcheck="false" class="tokenInput" type="text" placeholder="Enter token here...">
<div class="stuff">
<button class="login but1">Login</button>
</div>
</div>
<div class="part part2 savedaccounts">
<div class="xg">
<input class="SavedInput" spellcheck="false" type="text" placeholder="Enter token here...">
<button class="btw SavedButton but2">
<img src="./icons/plus-solid.svg" alt="plus">
</button>
</div>
<div class="accs">
<p class="noaccs none">No accounts saved, press the plus button to save one!</p>
<!-- <div class="big">
<img class="pfp" src="./3c6ccb83716d1e4fb91d3082f6b21d77.png" alt="">
<p class="user">Username123</p>
<div class="buts">
<button class="login2">
<img src="./icons/login.svg" alt="">
</button>
<button class="delete2">
<img src="./icons/trash.svg" alt="">
</button>
</div> -->
</div>
</div>
</div>
<div class="part part3 credits">
<p>This extension has primarily been <span class="color">developed by Keoni</span>. If you would like to contribute to the project, please star our <a class="color" href="https://github.com/keoni-gt" target="_blank">GitHub</a> repository.</p>
<p>If you are interested in obtaining a <span class="color">personalized tool for a fee</span>, contact me through <span class="color">Discord</span> (or refer to the information provided within GitHub).</p>
</div>
</div>
</body>
</html>