17 lines
406 B
HTML
17 lines
406 B
HTML
<!-- options.html -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Mealie Extension Options</title>
|
|
</head>
|
|
<body>
|
|
<h1>Extension Options</h1>
|
|
<label for="token">Token:</label>
|
|
<input type="text" id="token" name="token"><br>
|
|
<label for="url">URL:</label>
|
|
<input type="text" id="url" name="url"><br>
|
|
<button id="save">Save</button>
|
|
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html>
|