mod_register_ibr: Add FORM_TYPE as required by XEP-0077 (fixes #1511)

Backport of f90abf142d53 from trunk
This commit is contained in:
Emmanuel Gil Peyrot 2019-09-29 15:05:17 +02:00
parent a94da35eb0
commit e985473ef7

View file

@ -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;
};