added id to label

fixed #1194
This commit is contained in:
daria 2023-08-30 14:20:10 +03:00
parent 511bd730aa
commit bfd37735f2

View file

@ -530,8 +530,9 @@ define([
}
content.push(h('h3', Messages.team_createLabel));
content.push(h('label', Messages.team_createName));
var input = h('input', {type:'text'});
let label = h('label', { for: 'teamName' } , Messages.team_createName);
content.push(label);
let input = h('input', {type:'text', id:'teamName'});
content.push(input);
var button = h('button.btn.btn-success', Messages.creation_create);
content.push(h('br'));