-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (39 loc) · 1.91 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
<!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="style.css">
<link rel="shortcut icon" type="image/png" href="./favicon.ico?">
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface|Poppins:300" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<title>Profile Analyser</title>
</head>
<body>
<h1>GitHub Profile Analyzer</h1>
<div class="selection search-form-control form-group">
<!-- <h2>Select a User:</h2> -->
<select id="userDropdown" class="form-select form-select-lg mb-3" tabindex="1">
<option value="">Select a user</option>
</select>
<button id="submit" name="button" type="submit" class="btn btn-flat" tabindex="2">
<i class="fas fa-search"></i> Search
</button>
</div>
<div class="container">
<div class="user-info-container" id="user-container">
<div class="user-info" id="userInfo"></div>
</div>
<div class="chart-container" id="chartContainer">
<h2 id="recentActivitiesHeader" style="display: none;">Recent activities</h2>
<canvas id="myChart" style="height:300px;"></canvas>
</div>
</div>
<div id="results"></div>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
<script src="scripts/main.js" type="module"></script>
<script src="scripts/helper.js" type="module"></script>
</body>
</html>