Mercurial Hosting > chat
comparison src/register_sent.html.luan @ 117:e2deb5236f26
better login
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Thu, 04 Dec 2025 21:43:47 -0700 |
| parents | src/login_sent.html.luan@8c3b56bb0c83 |
| children |
comparison
equal
deleted
inserted
replaced
| 116:98b2dc732ca0 | 117:e2deb5236f26 |
|---|---|
| 1 local Luan = require "luan:Luan.luan" | |
| 2 local error = Luan.error | |
| 3 local Io = require "luan:Io.luan" | |
| 4 local Http = require "luan:http/Http.luan" | |
| 5 local Shared = require "site:/lib/Shared.luan" | |
| 6 local head = Shared.head or error() | |
| 7 local header = Shared.header or error() | |
| 8 | |
| 9 | |
| 10 return function() | |
| 11 Io.stdout = Http.response.text_writer() | |
| 12 %> | |
| 13 <!doctype html> | |
| 14 <html lang="en"> | |
| 15 <head> | |
| 16 <% head() %> | |
| 17 </head> | |
| 18 <body> | |
| 19 <% header() %> | |
| 20 <div content> | |
| 21 <h1>Register / Get Password</h1> | |
| 22 <p>A link to login has been emailed to you.</p> | |
| 23 </div> | |
| 24 </body> | |
| 25 </html> | |
| 26 <% | |
| 27 end |
