mirror of
https://github.com/nuttylmao/nutty.gg.git
synced 2026-09-19 04:00:59 -04:00
40 lines
1.0 KiB
HTML
40 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Settings</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="pinned-header">
|
|
<h2>Widget URL</h2>
|
|
<input id="widget-url" type="text" readonly>
|
|
<button id="save-settings">Click to copy URL</button>
|
|
<button onclick="OpenMembershipPage()">💎 Member Exclusive Widgets</button>
|
|
</div>
|
|
|
|
<div id="settings-container">
|
|
<div id="settings-content"></div>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
|
|
<div id="mommy-milkers">
|
|
<div id="load-settings-container">
|
|
<h2>Load Settings From Widget URL</h2>
|
|
<input id="load-url" type="text">
|
|
<div style="display: flex;">
|
|
<button id="cancel-settings" onclick="CloseSettings()">Cancel</button>
|
|
<span style="width: 20px;"></span>
|
|
<button id="load-settings" onclick="LoadSettings()">Load Settings</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |