mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_register_ibr: Add FORM_TYPE as required by XEP-0077 (fixes #1511)
Backport of f90abf142d53 from trunk
This commit is contained in:
parent
a94da35eb0
commit
e985473ef7
1 changed files with 2 additions and 0 deletions
|
@ -25,6 +25,7 @@ end);
|
|||
local account_details = module:open_store("account_details");
|
||||
|
||||
local field_map = {
|
||||
FORM_TYPE = { name = "FORM_TYPE", type = "hidden", value = "jabber:iq:register" };
|
||||
username = { name = "username", type = "text-single", label = "Username", required = true };
|
||||
password = { name = "password", type = "text-private", label = "Password", required = true };
|
||||
nick = { name = "nick", type = "text-single", label = "Nickname" };
|
||||
|
@ -50,6 +51,7 @@ local registration_form = dataform_new{
|
|||
title = title;
|
||||
instructions = instructions;
|
||||
|
||||
field_map.FORM_TYPE;
|
||||
field_map.username;
|
||||
field_map.password;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue