2025-05-24 18:29:59 -05:00

7 lines
206 B
Lua

local base_template = fs.read("templates/base.html")
local register_form = fs.read("templates/auth/register.html")
return send.html(render(base_template, {
title = "Register",
content = register_form
}))