index.ejs
1.91 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Jua|Nanum+Brush+Script|Yeon+Sung&display=swap&subset=korean" >
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/style.css' />
<style>
* {
font-weight: light;
-webkit-font-smoothing: antialiased;
font-family: 'Jua', sans-serif;
}
form input {
margin-top: 35px;
background-color: white;
border: 1px solid #772f9c;
line-height: 0;
font-size: 17px;
display: inline-block;
box-sizing: border-box;
padding: 20px 15px;
border-radius: 60px;
color: #772f9c;
font-weight: 100;
letter-spacing: 0.01em;
position: relative;
z-index: 1;
align-self: flex-end;
width:200px;
}
form input:hover, form input:focus {
color: white;
background-color: #772f9c;
}
#title{
font-size:60px;
}
#item2{
font-size:20px;
}
#item3{
flex:left;
}
</style>
</head>
<body bgcolor="#e7ded9">
<div id="container" >
<center>
<div id='item1'><p id='title'>
<%= title %></p>
</div>
<div ><p id='item2'>Welcome to <%= title %></p></div>
<div style="float:center;align-content:flex-start;margin : 10px;"><img src="calendar.png" width=150px /><img src="talk.png" width=80px/></div>
<P>구글 캘린더를 이용한 일정관리 및 카카오톡 나에게 보내기를 이용한 알림 서비스</P>
<p>구글과 카카오 계정 로그인 후 Reminder-Talk 을 이용해 보세요!</p>
<form action='/auth/google' method='GET'>
<input type="submit" name='submit' value='Google Login'>
</form>
<form action='/kakao' method='GET'>
<input type="submit" name='submit' value='Kakao Login'>
</form>
</center>
</div>
</body>
</html>