mirror of
https://github.com/LBRYFoundation/Watch-on-LBRY.git
synced 2025-08-23 17:47:26 +00:00
23 lines
689 B
HTML
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>
|