My-extension/options.html

34 lines
1023 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>
<label>
Пароль:
<input type="text" id="password" placeholder="Введите пароль" />
</label>
<button type="submit">Сохранить</button>
</form>
<p id="status" style="color: green;"></p>
<script src="options.js"></script>
</body>
</html>