diff options
author | Marvin Borner | 2020-10-10 17:49:51 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-10 17:49:51 +0200 |
commit | 897b4173c5cc190805a96aafe5f9258610332e39 (patch) | |
tree | ffd3e52712e2a8decfa2ec882c0110b0c10e61fd /admin/public/votes.html | |
parent | b2d9cf884f2aff3445d6619939186e48a683e5a9 (diff) |
Added vote stats
Diffstat (limited to 'admin/public/votes.html')
-rw-r--r-- | admin/public/votes.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/admin/public/votes.html b/admin/public/votes.html new file mode 100644 index 0000000..cd9563c --- /dev/null +++ b/admin/public/votes.html @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link + rel="stylesheet" + href="https://unpkg.com/purecss@2.0.3/build/pure-min.css" + integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" + crossorigin="anonymous" + /> + <link rel="stylesheet" href="style.css" type="text/css" media="all" /> + + <title>Votes</title> + </head> + <body> + <div class="pure-menu pure-menu-horizontal"> + <a href="/" class="pure-menu-item pure-menu-link">Home</a> + <a href="/auth/api/logout" class="pure-menu-item pure-menu-link">Logout</a> + </div> + <div class="card"> + <canvas id="votes" width="400" height="400"></canvas> + </div> + + <script src="https://cdn.jsdelivr.net/npm/chart.js@2.9.3/dist/Chart.bundle.min.js"></script> + <script src="votes.js"></script> + </body> +</html> |