diff options
author | Rafael Marçalo <raroma09@gmail.com> | 2022-11-05 13:51:05 +0000 |
---|---|---|
committer | Rafael Marçalo <raroma09@gmail.com> | 2022-11-05 13:51:05 +0000 |
commit | ba8c332375ebfad4969c6c432fd8ea8d1b7ada82 (patch) | |
tree | 4a5178056ced276d96aa4f3fcb4f6831e50171ba /views | |
parent | 2cb8f9157ee1a919368d6bb0d0543124c67b5a0a (diff) |
Some progress on working configs
Diffstat (limited to 'views')
-rw-r--r-- | views/settings.ejs | 46 |
1 files changed, 45 insertions, 1 deletions
diff --git a/views/settings.ejs b/views/settings.ejs index 6919dc4..3538770 100644 --- a/views/settings.ejs +++ b/views/settings.ejs @@ -2,4 +2,48 @@ <h1>Settings</h1> -<%- include('partials/footer'); %> +<div class="text-center mt-5"> + <form action="settings" method="POST"> + <div name="content"> + <h2 class="display-6">Content</h2> + <div class="row justify-content-center"> + <div class="col-sm-4 mt-2"> + <input class="form-check-input" type="checkbox" name="nsfw" <% if (config.settings.nsfw_content) { %> checked="true" <% } %> id="nsfw"> + <label class="form-check-label" for="nsfw">NSFW Content</label> + </div> + </div> + </div> + + <div name="network" class="mt-5"> + <h2 class="display-6">Network</h2> + <div class="row justify-content-center"> + <div class="col-sm-4"> + <label class="form-check-label" for="port">Port Number</label> + <input type="text" class="text-bg-dark form-control w-50 m-auto mt-2 text-center" placeholder="3000" name="port" <% if (config.settings.port) { %> value="<%= config.settings.port %>" <% } %> id="port"> + </div> + <div class="col-sm-4"> + <label class="form-check-label" for="tor">Tor SOCKS5 Proxy</label> + <input type="text" class="text-bg-dark form-control w-50 m-auto mt-2 text-center" placeholder="host" name="torHost" <% if (config.settings.tor.host) { %> value="<%= config.settings.tor.host %>" <% } %> id="host"> + <input type="text" class="text-bg-dark form-control w-50 m-auto mt-2 text-center" placeholder="port" name="torPort" <% if (config.settings.tor.port) { %> value="<%= config.settings.tor.port %>" <% } %> id="port"> + </div> + </div> + </div> + + <div name="network" class="mt-5"> + <div class="row justify-content-center"> + <div class="col-sm-4"> + <button type="submit" class="btn btn-primary"> + <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" + viewBox="0 0 16 16"> + <path + d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z"> + </svg> + Save + </button> + </div> + </div> + </div> + </form> +</div> + +<%- include('partials/footer'); %>
\ No newline at end of file |