Module:Contact: Difference between revisions
Appearance
Created page with "local p = {} function p.form( frame ) local username = mw.title.getCurrentTitle().getText() -- Get the current username (assumes the user is logged in) local subject = frame.args.subject or "" -- Get the subject input, if present local message = frame.args.message or "" -- Get the message input, if present -- Create a simple form for submitting the message return string.format([[ <form action="/w/index.php" method="post"> <input type=..." |
No edit summary |
||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
function p.form( frame ) | -- Function to render the form | ||
function p.form(frame) | |||
local | -- Get the username from the current user (if logged in) | ||
local username = mw.title.getCurrentTitle().text | |||
-- | -- HTML for the contact form | ||
return | 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 | end | ||
return p | return p |
Revision as of 23:45, 3 January 2025
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