view src/private/tools/config.html.luan @ 39:471b13e6ce2c

date formatting
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 17 Nov 2024 12:06:08 -0700
parents 2c63b10781e1
children 979a9ee73ea4
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>
			textarea {
				width: 90%;
				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