Initial commit
This commit is contained in:
43
options/options.html
Normal file
43
options/options.html
Normal 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>
|
||||
Reference in New Issue
Block a user