mirror of
https://github.com/ThePhaseless/Byparr.git
synced 2025-03-15 09:50:20 +08:00
43 lines
822 B
HTML
43 lines
822 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
|
|
<style>
|
|
body {
|
|
padding: 20px;
|
|
}
|
|
label {
|
|
display: block;
|
|
width: 800px;
|
|
padding: 0 0 20px;
|
|
}
|
|
textarea {
|
|
width: 100%;
|
|
height: 150px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1 id="title"></h1>
|
|
|
|
<label>
|
|
<span id="whitelist_label"></span><br />
|
|
<textarea id="whitelist"></textarea>
|
|
</label>
|
|
|
|
<label>
|
|
<input type="checkbox" id="status_indicators" />
|
|
<span id="status_indicators_label"></span>
|
|
</label>
|
|
|
|
<input type="button" id="save" value="" style="min-width: 100px" />
|
|
<div
|
|
id="status_saved"
|
|
style="display: none; color: green; padding-left: 5px"
|
|
></div>
|
|
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html>
|