snowflake/proxy/webext/popup.html
David Fifield 74d3895ee9 Make the "Turn On/Off" text a label for the slider.
So that you can click on the text as well as the slider.
2019-07-23 10:51:47 -06:00

25 lines
639 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="popup.css" />
<script src="popup.js"></script>
</head>
<body>
<div id="active">
<img src="icons/status-on.png" />
<p></p>
<p></p>
</div>
<div class="b button">
<label id="toggle" for="enabled">Turn On</label>
<label class="switch">
<input id="enabled" type="checkbox" checked/>
<span class="slider round"></span>
</label>
</div>
<div class="b learn">
<a target="_blank" href="https://snowflake.torproject.org/">Learn more</a>
</div>
</body>
</html>