Mercurial Hosting > chat
view src/private/tools/config.html.luan @ 57:c420f39eb474
chatuser_key
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 04 Mar 2025 07:05:12 -0700 |
parents | 979a9ee73ea4 |
children | e229f4aacde0 |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local stringify = Luan.stringify or error() local Io = require "luan:Io.luan" local Http = require "luan:http/Http.luan" local Shared = require "site:/lib/Shared.luan" local head = Shared.head or error() local header = Shared.private_header or error() local config = Shared.config or error() return function() Io.stdout = Http.response.text_writer() %> <!doctype html> <html> <head> <% head() %> <style> [content] { max-width: 90%; width: 700px; padding: 0; } textarea { width: 100%; height: 20em; } </style> </head> <body> <% header() %> <div content> <h1>Configure</h1> <form method=post action="save_config.txt"> <p> <textarea name=config autofocus><%= stringify(config) %></textarea> </p> <p> <input type=submit value="Update"> </p> </form> </div> </body> </html> <% end