mirror of
https://github.com/bellingcat/auto-archiver-extension.git
synced 2026-06-08 03:28:34 +03:00
37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
<!-- <!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>Options</title>
|
|
|
|
<form id="options-form" class="detail-view-container">
|
|
<h3>Color Picker</h3>
|
|
<div class="color-picker">
|
|
<div class="color-inputs">
|
|
<label class="color-input">
|
|
<span>R</span>
|
|
<input type="range" min="0" max="255" name="colorRed">
|
|
<input type="number" name="colorRed" min="0" max="255">
|
|
</label>
|
|
<label class="color-input">
|
|
<span>G</span>
|
|
<input type="range" min="0" max="255" name="colorGreen">
|
|
<input type="number" name="colorGreen" min="0" max="255">
|
|
</label>
|
|
<label class="color-input">
|
|
<span>B</span>
|
|
<input type="range" min="0" max="255" name="colorBlue">
|
|
<input type="number" name="colorBlue" min="0" max="255">
|
|
</label>
|
|
</div>
|
|
<div class="color-output"></div>
|
|
</div>
|
|
<h3>Notice Content</h3>
|
|
<div class="text-inputs">
|
|
<label class="text-input">
|
|
<span>Text</span>
|
|
<input type="text" name="text">
|
|
</label>
|
|
</div>
|
|
</form>
|
|
|
|
<script src="../js/options.js" type="module"></script> -->
|