-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (57 loc) · 1.54 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8"/>
<title>oAuth Buttons Preview</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="dist/css/oauth-buttons.css">
<!--[if lte IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"
integrity="sha256-3Jy/GbSLrg0o9y5Z5n1uw0qxZECH7C6OQpVBgNFYa0g=" crossorigin="anonymous"></script>
<![endif]-->
<script src="dist/js/oauth-buttons.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<header></header>
<div id="contents">
<div id="preamble">
본 사이트는 oAuth Buttons 의 프리뷰를 보여주기 위한 사이트입니다.
</div>
<div>
<label for="button-styles">
Button Styles
</label>
<select id="button-styles" type="label">
</select>
</div>
<div>
<label for="service-list">
Service
</label>
<select id="service-list" type="label">
</select>
</div>
<div>
<label for="length">
Length
</label>
<select id="length" type="label">
<option>long</option>
<option selected>none</option>
<option>short</option>
<option>logo-only</option>
</select>
</div>
<div>
<div class="lbtn">
<i class="logo"></i>
<p class="label">
Discord 아이디로 로그인
</p>
</div>
</div>
</div>
<footer></footer>
</body>
</html>