30 lines
813 B
HTML
30 lines
813 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Recipe Manager Settings</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Recipe Manager Settings</h1>
|
|
<p>Configure where import requests should be sent.</p>
|
|
|
|
<form id="settings-form">
|
|
<label for="base-url">Recipe Manager base URL</label>
|
|
<input
|
|
id="base-url"
|
|
name="baseUrl"
|
|
type="url"
|
|
placeholder="http://localhost:3000"
|
|
required
|
|
/>
|
|
<p id="status" aria-live="polite"></p>
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
</main>
|
|
<script type="module" src="options.js"></script>
|
|
</body>
|
|
</html>
|