Mercurial Hosting > lang
view src/login_sent.html.luan @ 79:d4473741142c default tip
chat UI
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 02 Sep 2025 16:33:45 -0600 |
parents | 78708fa556a0 |
children |
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() return function() Io.stdout = Http.response.text_writer() %> <!doctype html> <html lang="en"> <head> <% head() %> </head> <body> <% header() %> <div content> <h1>Login / Register</h1> <p>A link to login has been emailed to you.</p> </div> </body> </html> <% end