47 lines
1.4 KiB
HTML
47 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>General Bots</title>
|
|
<link rel="stylesheet" href="popup.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<img src="icons/icon48.png" alt="General Bots Logo">
|
|
<h1>General Bots</h1>
|
|
<p class="version">v1.0.0</p>
|
|
</div>
|
|
|
|
<div class="settings">
|
|
<div class="setting-item">
|
|
<label for="server-url">Server URL:</label>
|
|
<input type="text" id="server-url" placeholder="https://your-server.com/api">
|
|
</div>
|
|
|
|
<div class="setting-item toggle">
|
|
<span>Enable Message Processing</span>
|
|
<label class="switch">
|
|
<input type="checkbox" id="enable-processing" checked>
|
|
<span class="slider round"></span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="setting-item toggle">
|
|
<span>Hide Contact Window</span>
|
|
<label class="switch">
|
|
<input type="checkbox" id="hide-contacts">
|
|
<span class="slider round"></span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<button id="save-settings">Save Settings</button>
|
|
<p class="copyright">© pragmatismo.com.br • <a href="https://github.com/pragmatismo-io/GeneralBots" target="_blank">AGPL License</a></p>
|
|
</div>
|
|
</div>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|