<!DOCTYPE html> <html> <head> <title>Options for StammTV Chrome Extension</title> <link rel="icon" type="image/x-icon" href="../stammtv-bitty.png"> <link href="https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous"> <link rel="stylesheet" href="options.css"/> </head> <body class="bg-dark" style="width: 80%;margin: 0 auto "> <div style="display: grid"> <h1 class="mb-5 text-center">StammTV Extension Settings <img src="../stammtv-large.png"/></h1> <form> <div class="form-group row mb-3"> <label for="stammtv-base-url" class="col-sm-2 col-form-label">StammTV Base URL</label> <div class="col-sm-10"> <input id="stammtv-base-url" type="url" class="form-control dark" placeholder="https://..." aria-label="Add" required> <small class="form-text text-white" id="stammtv-base-url-small"> Enter the StammTV Base URL, beginning with http:// or https:// </small> </div> </div> <div class="form-group row mb-3"> <label for="stammtv-wss-url" class="col-sm-2 col-form-label">StammTV WSS URL</label> <div class="col-sm-10"> <input id="stammtv-wss-url" type="url" class="form-control dark" placeholder="wss://..." aria-label="Add" required> <small class="form-text text-white" id="stammtv-wss-url-small"> Enter the StammTV WSS URL, beginning with wss:// </small> </div> </div> <div id="status" style="color: #259025"></div> <button class="btn btn-primary" type="button" id="save" title="Submit and save"> Save </button> </form> </div> <script src="options.js"></script> </body> </html>