-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathoptions.html
More file actions
21 lines (21 loc) · 734 Bytes
/
options.html
File metadata and controls
21 lines (21 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GitHub SLOC Options</title>
</head>
<body>
<h3>Personal access token</h3>
<p>GitHub SLOC uses GitHub API to retrieve SLOC. By default it makes unauthenticated requests to the
GitHub
API, set personal access token if you want to</p>
<ul>
<li>Access a private repository</li>
<li>Bypass the rate limit of unauthenticated requests</li>
</ul>
<input type="password" id="github_sloc_token" placeholder="Personal access token"/>
<input type="button" id="save" value="Save"/>
<a href="https://github.com/settings/tokens/new?scopes=repo&description=GitHub%20SLOC" target="_blank">create one</a>
<script src="js/options.js"></script>
</body>
</html>