30 lines
858 B
HTML
30 lines
858 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Настройки расширения</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 20px;
|
|
}
|
|
label {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Настройки</h1>
|
|
<form id="settings-form">
|
|
<label>
|
|
URL сервера:
|
|
<input type="text" id="server-url" placeholder="Введите URL сервера" />
|
|
</label>
|
|
<button type="submit">Сохранить</button>
|
|
</form>
|
|
<p id="status" style="color: green;"></p>
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html> |