-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (98 loc) · 5.12 KB
/
index.html
File metadata and controls
138 lines (98 loc) · 5.12 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description"
content="Download GitHub public repository or repository's specific sub-folders or specific sub-files with a single click." />
<meta name="keywords"
content="GitHub Repositry Download, GitHub Directory Download, GitHub Sub-Directory Download, Github Files Download, GitHub, Download" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="images/favicon.png">
<title>Get Git Repo</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Poppins:wght@300;400;500&family=Satisfy&display=swap"
rel="stylesheet">
<!-- FontAwesome 6.1.1 CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Bootstrap 5.1.3 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<!-- CSS styles -->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="container-fluid">
<div class="title">
<h1><img class="logo" src="images/logo.png" alt=""> Get Git Repo</h1>
<p class="git">If you like it, give it a <a href="https://github.com/M-SuryaPrakash/Get-Git-Repo">star on <i class="fa-brands fa-github"></i></a></p>
</div>
</div>
<div class="container-fluid">
<div class="box">
<form action="" id="download-form">
<div class="row">
<div class="col-9">
<div class="input-group">
<input type="text" class="form-control" id="repoUrl" placeholder="https://github.com/username/repositry" required autocomplete="off">
</div>
</div>
<div class="col-3">
<button type="submit" class="btn btn-primary" id="download-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="currentColor"
class="bi bi-download" viewBox="0 0 16 16">
<path
d="M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5z" />
<path
d="M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3z" />
</svg>
Download
</button>
</div>
</div>
</form>
</div>
</div>
<div class="container-fluid" id="download-status">
<div id="status-img"></div>
<div class="box2">
<p class="clicked" id="status-msg"></p>
<p class="clicked" id="err-msg"></p>
</div>
</div>
<div class="container-fluid share">
<p class="share-title">Share us on</p>
<div class="share-btn-container">
<a href="#" class="tw"><i class="fa-brands fa-twitter footer-icon"></i></a>
<a href="#" class="fb"><i class="fa-brands fa-facebook-f footer-icon"></i></a>
<a href="#" class="wa"><i class="fa-brands fa-whatsapp footer-icon"></i></a>
<a href="#" class="rd"><i class="fa-brands fa-reddit footer-icon"></i></i></a>
<a href="#" class="li"><i class="fa-brands fa-linkedin footer-icon"></i></a>
</div>
</div>
<footer>
<div>
<p id="love">Made with <i class="fa-solid fa-heart"></i> on developers</p>
<p class="copyright"><img class="copyright-img" src="images/logo.png" alt=""> Copyright © <span id="year"></span> Get-Git-Repo</p>
</div>
</footer>
<!-- jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- lib script files -->
<script src="lib/utils/axios.min.js"></script>
<script src="lib/utils/jszip.min.js"></script>
<script src="lib/utils/FileSaver.min.js"></script>
<script src="lib/get_git_repo.js"></script>
<!-- main script files -->
<script src="js/script.js"></script>
<script src="js/index.js"></script>
</body>
</html>