calendar.ejs 445 Bytes
<!DOCTYPE html>
<html>
  <head>
    <link rel='stylesheet' href='/stylesheets/style.css' />
    
  </head>
  <body>
      <h1>캘린더 ID</h1>
      <p>
      <form action="/events" method="POST">
            <input type=hidden name="token" value=<%= accessToken %> >
            <% calList.forEach(function(val){ %> 
            <input type=submit name="id" value=<%= val.id %> >
            <% }) %>
      </form>
      </p>
  </body>
</html>