-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
136 lines (124 loc) · 4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="Description" content="Visualization tool for HWInfo logs" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@simonwep/pickr/dist/themes/nano.min.css"
/>
<link rel="stylesheet" type="text/css" href="src/stylesheets/main.css" />
<link
href="https://fonts.googleapis.com/css2?family=Alata&family=Source+Sans+Pro&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons+Round"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"
/>
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7970080490577757"
crossorigin="anonymous"
></script>
<title>LogCharts</title>
</head>
<body>
<header class="header">
<h1>LogCharts</h1>
</header>
<main class="aligned">
<div class="form-container">
<div class="step first-step">
<h1>
Download and install
<a href="https://www.hwinfo.com/" target="_blank">HWInfo</a>
</h1>
</div>
<div class="step second-step">
<span class="github"></span>
<h1>Generate a <a href="guide.html" target="_blank">log</a></h1>
</div>
<div class="step third-step">
<form id="form">
<input
class="log-input"
type="file"
id="log_input"
name="log_input"
accept=".csv"
/>
<label class="log-input-label" for="log_input">
<span class="bi bi-upload"></span>
<span>Upload your log</span>
</label>
<h2>or</h2>
<button type="button" id="example">See an example</button>
</form>
<p>
Found a bug? Please, report in this
<a
style="color: #424242"
target="_blank"
href="https://github.com/leo-holanda/logcharts.io/issues"
>link.</a
>
</p>
</div>
<div class="footer">
<div class="github-link">
<a
style="color: #ffffff"
target="_blank"
href="https://github.com/leo-holanda/logcharts.io"
aria-label="GitHub repository link"
>
<span class="bi bi-github"></span>
<span>leo-holanda/logcharts.io</span>
</a>
</div>
<div class="profile-link">
<span
>Made by
<a
style="color: #ffffff"
target="_blank"
href="https://github.com/leo-holanda"
aria-label="Author GitHub profile link"
>
Leo
</a></span
>
</div>
<div class="sponsor-link">
<a
style="color: #ffffff"
target="_blank"
href="https://ko-fi.com/leoholanda"
aria-label="Author GitHub profile link"
>
<span class="bi bi-cup-hot-fill"></span>
<span>Like the tool? Buy me a coffee!</span>
</a>
</div>
</div>
</div>
</main>
<script src="src/scripts/vendors/papaparse.min.js"></script>
<script src="src/scripts/vendors/d3.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@simonwep/pickr/dist/pickr.min.js"></script>
<script src="src/scripts/index.js" type="module"></script>
<!-- Cloudflare Web Analytics -->
<script
defer
src="https://static.cloudflareinsights.com/beacon.min.js"
data-cf-beacon='{"token": "9b9a56df2eab46d185555d79e3c32176"}'
></script>
<!-- End Cloudflare Web Analytics -->
</body>
</html>