-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (48 loc) · 2.1 KB
/
index.html
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
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en" style="margin:0;padding:0;height:100%;">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Find the most popular forks of a repository!">
<meta name="author" content="Caleb Smith">
<title>Github Fork Finder</title>
<link href="./bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="./bootstrap/css/bootstrap-theme.min.css" rel="stylesheet">
</head>
<body style="margin:0;padding:0;height:100%">
<div style="min-height:100%;position:relative;">
<!-- Header -->
<div class="navbar navbar-default navbar-static-top navbar-inverse" style="margin-bottom:0px;">
<div class="container-fluid" style="max-width:500px;">
<div class="navbar-header">
<a class="navbar-brand" href="http://caleb.techhounds.com/forks">Github Fork Finder</a>
</div>
</div>
</div>
<!-- Body Content -->
<div class="container" style="max-width:500px;padding-bottom:50px;">
<div class="text-center">
<h1>Github Forks Finder</h1>
<div class="row">
<div>
<div class="well" style="margin:10px;">
<p>This utility allows you to lookup all of the Forks of a Github Repository and sort them by popularity. It uses's Github's v4 GraphQL API & the OAuth Application Webflow, which means you'll have to give the site permission to lookup Repositories on your behalf.</p>
<a href="auth.php" class="btn btn-success btn-lg">Authorize via Github</a>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div style="position:absolute;bottom:0;height:65px;width:100%;">
<div class="text-center">
<p>
© Caleb Smith, 2017 <br>
<a href="https://github.com/karagenit/forks">About</a> ·
<a href="http://caleb.techhounds.com/forks/settings.php">Settings</a>
</p>
</div>
</div>
</div>
</body>
</html>