mirror of
https://github.com/jcreek/SelectionWheel.git
synced 2026-07-14 03:33:43 +00:00
36 lines
1.5 KiB
HTML
36 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Google tag (gtag.js) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EZ2WT7NQMK"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-EZ2WT7NQMK');
|
|
</script>
|
|
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="A fun and simple selection wheel - input names and get click to select them at random.">
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
<link rel="manifest" href="<%= require('../src/assets/manifest.webmanifest') %>" />
|
|
<link rel="shortcut icon" href="favicon.ico">
|
|
</head>
|
|
<body>
|
|
<div id="spinner-container">
|
|
</div>
|
|
|
|
<textarea id="input-lines" rows="15" cols="60" name="text"
|
|
placeholder="Enter names to be shuffled, one per line. Leave this area empty in order to use a default set of generated names."></textarea>
|
|
<button id="startSpinning">Start spinning</button>
|
|
|
|
<p id="install-app-btn-container">
|
|
<button id="install-offline-app" class="btn btn-secondary btn-xs">
|
|
<span>Install the app (you can even use it offline!)</span>
|
|
</button>
|
|
</p>
|
|
</body>
|
|
</html> |