-
Notifications
You must be signed in to change notification settings - Fork 18
/
about.html
73 lines (67 loc) · 4.09 KB
/
about.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="img/ducominingdashboard.png">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.7/css/all.css">
<title>Privacy Policy</title>
</head>
<body>
<div class="container1" id="myd2">
<article class="middle">
<div style="overflow: auto; height:90vh;">
<div class="fixedtainer">
<a href="index.php">
<button id="btn">
<span class="icon">
<i class="fas fa-arrow-circle-left fa-3x"></i>
</span>
</button>
</a>
Back to dashboard
</div>
<div class="card" style="padding: 20px">
<div class="line"></div>
<center><h3>Introduction:</h3></center>
<p>First of all, this dashboard is NOT directly associated with Duino-Coin.<br>
This is more a "fan project" by me!<br>
Hi, with this dashboard i want to build a central site for all duino-coin related updates. From server status to news, new users and more. Also, for providing an easy start to this currency I made an easy to use faucet.
My goal is it to make software that inspires, helps and makes life easier.
</p>
<p>You can impove this project on <a href="https://github.com/Lulaschkas/duco-mining-dashboard">Github</a></p>
<div class="line"></div>
<center><h3>Explaination:</h3></center>
<p>To use the dashboard you must have a Duino-Coin account.</p>
<p>You can create one account <a href="https://wallet.duinocoin.com/register">HERE</a></p>
<p>Then just enter your username, no password is requiered. You
can now see a loading screen which checks for two connections. a) The Websocket
connection to the main server(wss://server.duinocoin.com:15808) and b) a connection to the api file balances.json (https://server.duinocoin.com/balances.json)</p>
<p>With the balances file, the program also checks if your username is valid.</p>
<p>After this "ping check" the main dashboard will load.</p>
<p>If you have any other questions, you can contact me in the official Duino-Coin Discord</p>
<div class="line"></div>
<center><h3>Used Software:</h3></center>
<p>I used the following awesome software to build this project:</p>
<ol>
<li><a href="https://bulma.io/">Bulma - CSS framework</a></li>
<li><a href="https://bernii.github.io/gauge.js/">Gauge.js - Gauges for JS</a></li>
<li><a href="https://www.chartjs.org/">Chart.js - Charts for JS</a></li>
<li><a href="https://fontawesome.com/">Font Awesome - Icons</a></li>
<li><a href="https://vuejs.org/">Vue.js - JavaScript framework</a></li>
</ol>
<br>
<br>
<center>
<a href="privacy.html"><button class="button is-dark">Privcy policy/Legal Notice</button></a>
<a href="about.html"><button class="button is-dark">About</button></a>
<a href="fixes.html" ><button class="button is-dark">Fix problems</button></a>
<a href="whatsduco.html"><button class="button is-dark">What is duco?</button></a>
</center>
</div>
</div>
</article>
</div>
</body>
</html>