diff options
-rw-r--r-- | plugins/mod_register.lua | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua index c376117f..f89efe20 100644 --- a/plugins/mod_register.lua +++ b/plugins/mod_register.lua @@ -41,16 +41,21 @@ local field_map = { date = { name = "date", type = "text-single", label = "Birth date" }; }; +local title = module:get_option_string("registration_title", + "Creating a new account"); +local instructions = module:get_option_string("registration_instructions", + "Choose a username and password for use with this service."); + local registration_form = dataform_new{ - title = "Creating a new account"; - instructions = "Choose a username and password for use with this service."; + title = title; + instructions = instructions; field_map.username; field_map.password; }; local registration_query = st.stanza("query", {xmlns = "jabber:iq:register"}) - :tag("instructions"):text("Choose a username and password for use with this service."):up() + :tag("instructions"):text(instructions):up() :tag("username"):up() :tag("password"):up(); |