view src/account.html.luan @ 56:7ce54f6d93f2

add change name
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 28 Nov 2022 22:00:43 -0700
parents fc3ee39d7764
children 169ac5fdb320
line wrap: on
line source

local Luan = require "luan:Luan.luan"
local error = Luan.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.header or error()
local footer = Shared.footer or error()
local Forum = require "site:/lib/Forum.luan"
local forum_title = Forum.title or error()


return function()
	Io.stdout = Http.response.text_writer()
%>
<!doctype html>
<html>
	<head>
<%		head() %>
		<title><%=forum_title%> - Your Account</title>
	</head>
	<body>
<%		header() %>
		<div content>
			<h1>Your Account</h1>

			<p><a href="/change_name.html">Change Name</a></p>
			<p><a href="/logout.html">Logout</a></p>
		</div>
<%		footer() %>
	</body>
</html>
<%
end