Files
base-url-switcher-browser-e…/options/options.html
2021-07-13 23:11:58 +02:00

43 lines
1.1 KiB
HTML

<!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>