-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathindex.html
78 lines (75 loc) · 2.41 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Youtube Migrate</title>
<link
rel="stylesheet"
href="https://bootswatch.com/4/lumen/bootstrap.min.css"
/>
</head>
<body>
<div class="container text-center">
<h3 class="mt-5">
Youtube Migrate
<small class="text-muted"
>| Transfer your subscriptions to new account
</small>
</h3>
<img
src="https://cdn4.iconfinder.com/data/icons/logos-and-brands/512/395_Youtube_logo-512.png"
alt="YouTube logo"
style="width: 150px; margin: 0 auto; display: block;"
/>
<button id="signin-old" class="btn btn-secondary">
Choose your old account
</button>
<button id="signin-new" class="btn btn-secondary d-none">
Choose your new account
</button>
<p
id="old-data"
style="margin-top: 10px; color: blue;"
class="font-weight-bold"
></p>
<button id="transfer" class="btn btn-secondary d-none">
Initiate transfer
</button>
<h6 id="notifications" style="margin-top: 30px;"></h6>
<div
class="d-none justify-content-center mt-5"
id="stats"
style="height: 300px; overflow-y: scroll;"
>
<div>
<p><strong>Completed</strong></p>
<ul class="list-group m-3" id="completed"></ul>
</div>
<div>
<p><strong>Remaining</strong></p>
<ul class="list-group m-3" id="remaining"></ul>
</div>
<div>
<p><strong>Already in account</strong></p>
<ul class="list-group m-3" id="already"></ul>
</div>
</div>
<hr style="margin-top: 150px;" />
<p>
We don't misuse or store your data in any manner. Source code can be
found <a href="https://github.com/raj-khare/yt-migrate">here</a>
</p>
<p>
<strong>
Note: If you are getting 403 error, it's probably because quota is
exhausted.</strong
>
</p>
</div>
<script async defer src="https://apis.google.com/js/api.js" onload="gapiLoad()"></script>
<script async defer src="https://accounts.google.com/gsi/client" onload="gisInit()"></script>
<script src="./main.js"></script>
</body>
</html>