Initial commit

This commit is contained in:
2021-07-13 23:11:58 +02:00
commit 96063abc3a
9 changed files with 228 additions and 0 deletions

43
options/options.html Normal file
View File

@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="options.css" />
</head>
<body>
<form>
<div class="row">
<div class="col-25">
<label for="local">Local</label>
</div>
<div class="col-75">
<input type="text" id="local" placeholder="https://localhost:8080/">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="test">Test</label>
</div>
<div class="col-75">
<input type="text" id="test" placeholder="https://test.mydomain.com/">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="prod">Production</label>
</div>
<div class="col-75">
<input type="text" id="prod" placeholder="https://mydomain.com/">
</div>
</div>
<div class="row">
<input type="submit" value="Save">
</div>
</form>
<script src="options.js"></script>
</body>
</html>