calendar.ejs
1.29 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
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' href='/stylesheets/style.css' />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Jua|Nanum+Brush+Script|Yeon+Sung&display=swap&subset=korean" >
<style>
#d{
background-color: none;
border: 1px solid #772f9c;
line-height: 1;
font-size: 17px;
width: 65%;
padding:10px 15px;
display: block;
box-sizing: border-box;
border-radius: 60px;
color: #772f9c;
font-weight: 100;
letter-spacing: 0.01em;
position: relative;
z-index: 1;
margin-left: 100px;
}
}
</style>
<ul><p><a href="/logout"><font size="4">Logout</font></a></p></ul>
</head>
<body bgcolor="e7ded9">
<center>
<br>
<h1>Calendar ID Lists</h1>
<p>
<form action="/events" method="POST">
<input id='d' type=hidden name="googleToken" value=<%= googleToken %>>
<br><br>
<input id='d' type=hidden name="kakaoToken" value=<%= kakaoToken %>>
<br><br>
<% calList.forEach(function(val){ %>
<input id='d' type=submit name="id" value=<%= val.id %>>
<br><br>
<% }) %>
</form>
</p>
</center>
</body>
</html>