You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.7 KiB
HTML
43 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<title>Options for StammTV Chrome Extension</title>
|
|
<link rel="icon" type="image/x-icon" href="../stammtv-bitty.png">
|
|
<link rel="stylesheet" href="options.css"/>
|
|
</head>
|
|
<body style="width: 80%; margin: 0 auto ">
|
|
<div style="display: grid">
|
|
<h1 class="mb-5 text-center">StammTV Extension Settings <img src="../stammtv-large.png" alt="StammTV Logo"/></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> |