-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 917 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 917 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./css/login.css" />
<script src="https://developers.kakao.com/sdk/js/kakao.js"></script>
</head>
<body>
<div class="login-container">
<img src="./images/logo.png" class="icon" />
<div class="button">
<button class="btn btnkakao" onclick="moveKakaoLogin()">
<img
src="./images/startkakao.png"
alt="kakao_logo"
class="kakao_icon"
/>
</button>
<p class="subText">지금 시작하여 더 스마트한 학습 경험을 만나보세요!</p>
</div>
</div>
</body>
<script>
function moveKakaoLogin() {
location.href = `http://localhost:3000/auth/kakao`;
}
</script>
</html>