forked from taeyangk0331/Profile-Autogeneration-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
54 lines (49 loc) · 1.8 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/popup.css" />
<script src="/library/jquery-3.3.1.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet" />
<script src="/library/semantic.min.js"></script>
</head>
<body>
<div class="ui grid container">
<div class="sixteen wide center aligned column">
<h1 id="title">GPGen</h1>
<p id="caption">Github Profile Generator</p>
<br />
<!-- Authentication mode -->
<div id="auth_mode" hidden>
<p class="onboarding">
<br />
Authenticate with GitHub to use
<strong>GPGen</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>Baekjoon<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>
<!-- Generate Socials -->
<div id="socials" class="sixteen wide column">
<a title="GPGen GitHub" href="https://github.com/taeyangk0331/SKKU_OSSP_Project" target="_blank"><i class="ui black github icon"></i></a>
<a title="GPGen Home" id="welcome_URL" href="" target="_blank"><i class="ui grey home icon"></i></a>
</div>
</div>
<script src="scripts/oauth2.js"></script>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>