Mercurial Hosting > chat
view src/login_sent.html.luan @ 96:e33e101f5493
file upload fix
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Wed, 18 Jun 2025 21:21:12 -0600 |
| parents | 8c3b56bb0c83 |
| 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
