-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·67 lines (63 loc) · 3.21 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
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<title>Unfollowers for Github</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="tablefiles/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="tablefiles/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="tablefiles/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="tablefiles/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="tablefiles/perfect-scrollbar.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="tablefiles/util.css">
<link rel="stylesheet" type="text/css" href="tablefiles/main.css">
<!--===============================================================================================-->
</head>
<body>
<div class="starter-template">
<h1>Unfollowers for Github</h1><br>
<p class="lead">A webapp to list all the people who you follow but they don't follow you back on Github.</p>
</div>
<form>
<div class="form-group text-center">
<input type="text" class="form-control col-lg-4" id="user" placeholder="Enter Github Username" autocomplete="off">
<small id="emailHelp" class="form-text text-muted">We'll never share your Github Username with anyone else.<br> Table loading may take longer for profiles with more followers.</small>
<button type="submit" id="submit" class="btn btn-primary">Submit</button>
</div>
</form>
<div class="limiter">
<div class="container-table100">
<div class="wrap-table100">
<div class="table100">
<table>
<thead>
<tr class="table100-head">
<th class="column1">Username</th>
<th class="column2">Profile Link to Unfollow</th>
</tr>
</thead>
<tbody id="unfollowtable">
</tbody>
</table>
</div>
</div>
</div>
</div>
<!--===============================================================================================-->
<script src="tablefiles/jquery-3.2.1.min.js"></script>
<!--===============================================================================================-->
<script src="tablefiles/popper.js"></script>
<script src="tablefiles/bootstrap.min.js"></script>
<!--===============================================================================================-->
<script src="tablefiles/select2.min.js"></script>
<!--===============================================================================================-->
<script src="tablefiles/main.js"></script>
<script type="text/javascript" src="scripts.js"></script>
</body>
</html>