view src/login.html.luan @ 44:1aa50739475a

add manual login
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 27 Feb 2025 22:50:46 -0700
parents 7ea33179592a
children 38c209714df9
line wrap: on
line source

local Luan = require "luan:Luan.luan"
local error = Luan.error
local ipairs = Luan.ipairs or error()
local Html = require "luan:Html.luan"
local html_encode = Html.encode 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.header or error()
local Utils = require "site:/lib/Utils.luan"
local to_list = Utils.to_list or error()


return function()
	local with = Http.request.parameters.with
	with = to_list(with)
	Io.stdout = Http.response.text_writer()
%>
<!doctype html>
<html>
	<head>
<%		head() %>
		<style>
			input[name=email] {
				width: 300px;
				max-width: 100%;
			}
		</style>
	</head>
	<body>
<%		header() %>
		<div content>
			<h1>Login / Register</h1>
			<p>A link to login will be emailed to you.</p>
			<form page onsubmit="ajaxForm('/login.js',this)" action="javascript:">
<%	for _, email in ipairs(with) do %>
				<input type=hidden name=with value="<%=html_encode(email)%>">
<%	end %>
				<p>
					<label prompt>Your email address</label>
					<input type=email name=email required autofocus>
				</p>
				<p>
					<input type=submit>
				</p>
			</form>
			<p><a href="manual_login.html">Password Login</a></p>
			<p><a href="about.html">About Web Chat</a></p>
		</div>
	</body>
</html>
<%
end