-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
84 lines (74 loc) · 2.93 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/popup.css" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet" />
</head>
<body>
<div class="ui grid container">
<div class="sixteen wide center aligned column">
<h1 id="title">N<span style="color: #0078c3">/<</span>LCB<span style="color: #0078c3"> Hub</span>
</h1>
<p id="caption">Sync your code from BOJ to GitHub</p>
<br />
<!-- Authentication mode -->
<div id="auth_mode" hidden>
<p class="onboarding">
<br />
Authenticate with GitHub to use
<strong>NKLCB<span style="color: #f18500">Hub</span></strong>
</p>
<button id="authenticate" class="ui secondary button">
<i class="icon github"></i>
Authenticate
</button>
</div>
<!-- Repo Hook mode -->
<div id="hook_mode" hidden>
<p class="onboarding">
<br />
Set up repository hook to use
<strong>NKLCB<span style="color: #0078c3">Hub</span></strong>
</p>
<a id="hook_URL" href="" target="blank" class="ui secondary button">
<i class="icon github"></i>
Set up Hook
</a>
</div>
<div id="commit_mode" hidden>
<p id="repo_url" class="ui small header" style="margin-top: 5px; margin-bottom: 6px !important"></p>
<div class="ui small header" style="margin-bottom: 5px; margin-top: 0px !important">
<a style="color: rgb(255, 63, 63) !important" target="_blank"
href="https://github.com/Donghyeon0915/NKLCB_HUB/issues">Request a BugFix</a>
</div>
</div>
<!-- 기능 on/off -->
<div style="margin-top: 10px" hidden>
<input type="checkbox" id="onffbox" />
<label for="onffbox" id="onffmain">
<span id="onffball"></span>
</label>
</div>
</div>
<!-- Generate Socials -->
<div id="socials" class="sixteen wide column">
<a title="BaekjoonHub GitHub" href="https://github.com/Donghyeon0915/NKLCB_Hub" target="_blank"><i
class="ui black github icon"></i></a>
<a title="Email" href="[email protected]" target="_blank"><i class="ui red envelope icon"></i></a>
<a title="Patch Notes" href="https://github.com/Donghyeon0915/NKLCB_Hub" target="_blank"><i
class="ui list alternate outline icon"></i></a>
<a title="BaekjoonHub Home" id="welcome_URL" href="" target="_blank"><i class="ui grey home icon"></i></a>
</div>
<!-- 리포지토리 선택 TreeView -->
<!-- <div class="col-md-4 pt-5">
<div id="tree">
</div>
</div>| -->
<!-- 리포지토리 선택 TreeView -->
</div>
<script src="/library/jquery-3.6.3.min.js"></script>
<script src="/library/semantic.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
<script src="scripts/oauth2.js"></script>
</body>
</html>