Mercurial Hosting > freedit
view src/logout.html.luan @ 52:9f8ebc757814
add convert urls
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 23 Nov 2022 23:29:16 -0700 |
parents | fc3ee39d7764 |
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() local footer = Shared.footer or error() local Forum = require "site:/lib/Forum.luan" local forum_title = Forum.title or error() return function() Http.response.remove_cookie("user") Http.response.remove_cookie("password") Http.request.cookies.user = nil Http.request.cookies.password = nil Io.stdout = Http.response.text_writer() %> <!doctype html> <html> <head> <% head() %> <title><%=forum_title%> - Logout</title> </head> <body> <% header() %> <div content> <h1>Logout</h1> <p>You have been logged out.</p> </div> <% footer() %> </body> </html> <% end