-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
56 lines (50 loc) · 2.27 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">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<link rel="apple-touch-icon" sizes="180x180" href="meta/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="meta/favi/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="meta/favicon-16x16.png" />
<link rel="manifest" href="meta/site.webmanifest" />
<title>Be Rude</title>
</head>
<body>
<div class="container">
<header class="text-center text-light my-4">
<h1 class="mb-4">Be Rude 😤</i></h1>
<p class="mb-4 text-center">Be Rude 😤 lists all users who dont follow you back on GitHub</p>
<div class="input-group mb-3">
<input type="text" class=" username form-control" placeholder="Your Github Username" aria-label="GitHub's username" aria-describedby="button-addon2">
<div class="input-group-append">
<button class="submit btn btn-outline-light" type="button" id="button-addon2">Show</button>
</div>
</div>
</header>
<div class="d-flex justify-content-center">
<div class="spinner-border text-light d-none" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<ul class="list-group unFUser mx-auto text-light">
<!-- Auto template generator view into js -->
</ul>
<p class="mb-4 text-center error"></p>
<img src="https://forthebadge.com/images/badges/made-with-javascript.svg" alt="" class="mx-auto d-block space" />
<div class="text-center space2">
<h5><a href="https://github.com/AsishRaju"><span class="badge badge-light">atleast follow the author on github 🙏🏻😉</span></a></h5>
</div>
</div>
<script src="https://kit.fontawesome.com/0de963d6c4.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="gh.min.js"></script>
<script src="app.js"></script>
</body>
</html>