-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 761 Bytes
/
index.html
File metadata and controls
28 lines (27 loc) · 761 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
<!DOCTYPE html>
<html>
<head>
<title>Mutual Following</title>
<script src="https://d3js.org/d3.v4.js"></script>
</head>
<body>
<button id="colorBtn">Colors bar</button>
Login :
<input type="text" id="login" name="login" placeholder="Login" />
Personal Access Token:
<input
type="password"
id="authToken"
name="authToken"
placeholder="Personal Access Token"
/>
<text id="status"></text>
<button id="submitBtn">Run</button>
<button onclick="window.open('https://github.com/settings/tokens/new')">
Get Token
</button>
<svg id="table1" width="960" height="800"></svg>
<svg id="table2" width="960" height="800"></svg>
<script src="index.js"></script>
</body>
</html>