-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathclassify.ejs
More file actions
28 lines (26 loc) · 1.1 KB
/
Copy pathclassify.ejs
File metadata and controls
28 lines (26 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scatter Plot</title>
<script type="module" src="/js/dataManager.js"></script>
<!-- <script src="https://d3js.org/d3.v5.min.js"></script> -->
<script src="https://cdn.jsdelivr.net/npm/d3@7.8.5/dist/d3.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/pako@2.0.4/dist/pako_inflate.min.js"></script>
<%- include('../partials/header.ejs', {authenticated:true}) %>
<link rel="stylesheet" type="text/css" href="/css/styles.css">
<link rel="stylesheet" type="text/css" href="/css/lightcurveplot.css">
</head>
<body>
<div id="chart-container" data-min-view-time-ms="<%= minViewTimeMs %>" style="margin: 0 auto; text-align: center; width: 90vw; height: 80vh;">
<div id="chart" style="padding: 5px"></div>
<%- include('../partials/classification_ui.ejs') %>
</div>
<script src="/js/chartUtils.js"></script>
<script src="/js/classification.js"></script>
<script src="/js/infoPopup.js"></script>
<!-- get_user_id(); -->
</div>
</body>
</html>