Watch-on-LBRY/popup/popup.html
2020-02-06 00:17:24 +02:00

23 lines
689 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<div class="container">
<label>Enable Redirection:</label>
<div class="enable">
<button type="button" class="button" name="enable" value="1" > YES </button>
<button type="button" class="button" name="disable" value="0" > NO </button>
</div>
<label> Where would you like to redirect ? </label>
<div class="redirect">
<button type="button" class="button" name="site" value="lbry.tv" > LBRY.tv </button>
<button type="button" class="button" name="app" value="app" > LBRY App </button>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>