forked from BaekjoonHub/BaekjoonHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
72 lines (65 loc) · 2.9 KB
/
welcome.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/welcome.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">
<br />
<p class="caption" style="font-size: 9em">Bae<span style="color: #0078c3">/<</span>joonHub<span style="color: #0078c3">></span></p>
<p class="caption">Automatically sync your code from Baekjoon to GitHub</p>
<br /><br /><br /><br /><br /><br /><br /><br />
<p hidden id="error"></p>
<p hidden id="success"></p>
<p hidden id="unlink">Linked the wrong repo? <a>Unlink</a>.</p>
</div>
<!-- Create Hook -->
<div style="display: none" id="hook_mode" class="ui grid container">
<div class="six wide column">
<p class="caption ui large header center aligned">To get started with BaekjoonHub</p>
</div>
<div class="four wide left aligned column">
<div class="ui form">
<div class="field">
<select id="type">
<option value="">Pick an Option</option>
<option value="new">Create a new Private Repository</option>
<option value="link">Link an Existing Repository</option>
</select>
</div>
</div>
</div>
<div class="six wide column">
<div class="ui form">
<div class="field">
<input autocomplete="off" id="name" placeholder="Repository Name" type="text" />
</div>
</div>
</div>
<div class="sixteen wide right aligned column">
<br />
<button id="hook_button" disabled class="positive ui button">Get Started</button>
</div>
</div>
<!-- Show stats -->
<div style="display: none" id="commit_mode" class="ui grid container">
<div class="wide center aligned column">
<br /><br /><br />
<div class="ui inverted large header">Want more features? <br /><a style="color: aqua !important; font-size: 0.8em" target="_blank" href="https://github.com/BaekjoonHub/BaekjoonHub/labels/feature">Request a feature!</a></div>
</div>
</div>
<!-- Rate on GitHub -->
<div class="sixteen wide center aligned column">
<br /><br /><br /><br /><br />
<div class="ui inverted small header">
<a style="color: rgb(226, 243, 243) !important" target="_blank" href="https://github.com/BaekjoonHub/BaekjoonHub">Star <span style="color: white">Baekjoon</span><span style="color: #0078c3 !important">Hub</span> on GitHub</a>
</div>
</div>
</div>
<script type="text/javascript" src="welcome.js"></script>
</body>
</html>