Mercurial Hosting > linkmystyle
view src/forgot2.html.luan @ 3:b016e4b7c8da default tip
add read_me
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 12 Jul 2025 12:51:36 -0600 |
parents | 8f4df159f06b |
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 page_header = Shared.page_header or error() local footer = Shared.footer or error() return function() local email = Http.request.parameters.email or error() Io.stdout = Http.response.text_writer() %> <!doctype html> <html lang="en"> <head> <% head() %> <title>Link My Style</title> </head> <body> <div page> <% page_header() %> <div> <h1>Email sent</h1> <p>Your account information has been emailed to <%=email%>.</p> <p>If you can't find the email, it might be in your Spam folder.</p> </div> <% footer() %> </div> </body> </html> <% end