Mercurial Hosting > disearch
view src/private/tools/config.html.luan @ 5:aa1920665f98
discord login
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 23 Oct 2023 00:43:41 -0600 |
parents | 43814e9f5802 |
children |
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 Config = require "site:/lib/Config.luan" return function() local config = Config.get_for_config() config = stringify(config) Io.stdout = Http.response.text_writer() %> <!doctype html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> @import "/tools/tools.css"; textarea { width: 100%; height: 200px; } </style> </head> <body> <h1>Config</h1> <form method=post action="config_save.txt"> <p><textarea name=config><%=config%></textarea></p> <p><input type=submit></p> </form> </body> </html> <% end