Jump to content

Module:Contact

From nUSA Wiki
Revision as of 23:45, 3 January 2025 by Jord (talk | contribs)

Documentation for this module may be created at Module:Contact/doc

local p = {}

-- Function to render the form
function p.form(frame)
    -- Get the username from the current user (if logged in)
    local username = mw.title.getCurrentTitle().text

    -- HTML for the contact form
    return '<form action="/wiki/Contact" method="POST">' ..
           '<label for="subject">Subject:</label>' ..
           '<input type="text" id="subject" name="subject" required><br>' ..
           '<label for="message">Message:</label>' ..
           '<textarea id="message" name="message" required></textarea><br>' ..
           '<input type="hidden" name="username" value="' .. username .. '">' ..
           '<button type="submit">Send</button>' ..
           '</form>'
end

return p