-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 1.49 KB
/
index.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
<!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>Twitch Token Revoker</title>
<link rel="stylesheet" href="style.css" />
<meta
name="description"
content="Revokes authentication tokens from applications connected to your twitch account."
/>
</head>
<body>
<div class="wrapper">
<form class="form-body" id="form">
<h1 style="text-align: center">Twitch Token Revoker</h1>
<p style="color: #ccc">
Revokes authentication tokens from applications connected to your
account.
</p>
<div class="toast" id="toast">Espere por favor...</div>
<div class="form-item">
<span class="form-label">Client ID</span>
<input
required
type="text"
class="form-input"
placeholder="123456789"
id="client-id"
/>
</div>
<div class="form-item">
<span class="form-label">Access Token</span>
<input
required
type="text"
class="form-input"
placeholder="abcdefghijkl"
id="access-token"
/>
</div>
<div class="form-item">
<button type="submit" class="form-btn">Revoke</button>
</div>
</form>
</div>
<script src="app.js"></script>
</body>
</html>