rj1
about | log | files | refs | license

settings.html (881B) - raw


<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="settings.css" />
  </head>
  <body>
    <form>
      <h3>Settings</h3>
      <div>
        <label>
          <input id="newTab" type="checkbox" />
          Open uploaded image in a new tab
        </label>
      </div>
      <div>
        <label>
          <input id="clipboardPlace" type="checkbox" />
          Place uploaded image URL in system clipboard
        </label>
      </div>
      <h3>File host</h3>
      <div>
        <label>
          <select id="fileHost" name="fileHost">
            <option value="filehole">filehole</option>
            <option value="uguu">uguu</option>
          </select>
        </label>
      </div>
      <button type="submit">Apply</button>
    </form>
    <script src="settings.js"></script>
    <div class="spacer"></div>
  </body>
</html>