changeset 44:1aa50739475a

add manual login
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 27 Feb 2025 22:50:46 -0700
parents 89d3ddd302c7
children e138343b2c76
files src/login.html.luan src/login.js.luan src/manual_login.html.luan src/manual_login.js.luan
diffstat 4 files changed, 82 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/login.html.luan	Thu Feb 27 22:18:18 2025 -0700
+++ b/src/login.html.luan	Thu Feb 27 22:50:46 2025 -0700
@@ -45,6 +45,7 @@
 					<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>
--- a/src/login.js.luan	Thu Feb 27 22:18:18 2025 -0700
+++ b/src/login.js.luan	Thu Feb 27 22:50:46 2025 -0700
@@ -14,7 +14,8 @@
 return function()
 	local email = Http.request.parameters.email or error()
 	local user = User.get_or_create_by_email(email)
-	local url = base_url().."/do_login.html?user="..user.id.."&password="..user.password
+	local password = user.password
+	local url = base_url().."/do_login.html?user="..user.id.."&password="..password
 	local with = Http.request.parameters.with
 	with = to_list(with)
 	for _, email in ipairs(with) do
@@ -28,6 +29,8 @@
 Here is the link to login:
 
 <%= url %>
+
+Or login with your email and the password: <%=password%>
 <%		`
 	}
 	Io.stdout = Http.response.text_writer()
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/manual_login.html.luan	Thu Feb 27 22:50:46 2025 -0700
@@ -0,0 +1,54 @@
+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()
+	Io.stdout = Http.response.text_writer()
+%>
+<!doctype html>
+<html>
+	<head>
+<%		head() %>
+		<style>
+			input[name=email] {
+				width: 300px;
+				max-width: 100%;
+			}
+			[failed] {
+				color: red;
+			}
+		</style>
+	</head>
+	<body>
+<%		header() %>
+		<div content>
+			<h1>Password Login</h1>
+			<form page onsubmit="ajaxForm('/manual_login.js',this)" action="javascript:">
+				<p>
+					<label prompt>Your email address</label>
+					<input type=email name=email required autofocus>
+				</p>
+				<p>
+					<label prompt>Password</label>
+					<input name=password required>
+				</p>
+				<p>
+					<input type=submit>
+				</p>
+				<p failed></p>
+			</form>
+		</div>
+	</body>
+</html>
+<%
+end
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/manual_login.js.luan	Thu Feb 27 22:50:46 2025 -0700
@@ -0,0 +1,23 @@
+local Luan = require "luan:Luan.luan"
+local error = Luan.error
+local Io = require "luan:Io.luan"
+local Http = require "luan:http/Http.luan"
+local User = require "site:/lib/User.luan"
+
+
+return function()
+	local email = Http.request.parameters.email or error()
+	local password = Http.request.parameters.password or error()
+	Io.stdout = Http.response.text_writer()
+	local user = User.get_by_email(email)
+	if user==nil or user.password ~= password then
+%>
+		document.querySelector('[failed]').textContent = 'Login failed';
+<%
+		return
+	end
+	user.login()
+%>
+	location = '/';
+<%
+end