-
Notifications
You must be signed in to change notification settings - Fork 2
/
qr_check.html
85 lines (81 loc) · 1.82 KB
/
qr_check.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
85
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, width=device-width">
<title>GDG Korea</title>
<meta property="og:title" content="GDG Korea">
<meta property="og:description" content="Google I/O Extended 2017 참석확인용 사이트입니다">
<meta name="canonical" content="http://qr.gdg.kr">
<style>
html,body{
width:100%;
height:100%;
}
body {
display:-webkit-box;
display:-webkit-flex;
display:flex;
-webkit-align-items:center;
align-items:center;
-webkit-text-size-adjust:1;
margin:0;
text-align:center;
background:#333;
color:#fff;
font-family:sans-serif;
}
.center {
margin:auto;
}
.header {
font-size:2em;
}
.button {
display:block;
border:1px solid #ffffff;
margin:1em 0;
padding:1em;
width:100%;
font-size:1em;
border-radius:5px;
color:inherit;
font:inherit;
background:transparent;
-webkit-appearance:none;
box-sizing:;
}
#email{
display:block;
font:inherit;
width:100%;
margin:10px 0;
padding:1em;
background:#ffffff;
color:#333333;
-webkit-appearance:none;
box-sizing:border-box;
}
#submit {
font:inherit;
}
</style>
</head>
<body>
<div class="center">
<form action="https://secure.meetup.com/oauth2/authorize?client_id=1en2tpbo89i57gu6s666if6npo&response_type=token&redirect_uri=https://gdg-qr-code.herokuapp.com/qr_redirect.html" method="post">
<div class="logo">
<img src="./logo-white.svg" width="100px" height="100px"></svg>
</div>
<div class="header">
<p>QR코드 발급받기</p>
</div>
<div class="input">
<input type="submit" class="button" id="submit" value="Meetup.com에 로그인">
</div>
</form>
</div>
<script type="text/javascript">
</script>
</body>
</html>