initial commit

This commit is contained in:
Sean 2024-12-18 17:19:20 -05:00
commit 1d973f1be1
6 changed files with 174 additions and 0 deletions

17
options.html Normal file
View file

@ -0,0 +1,17 @@
<!-- 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>