25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-24 16:23:40 +01:00

Web Admin roster page: move the AddJID textbox to top (#4067)

This commit is contained in:
Badlop 2023-07-19 16:50:06 +02:00
parent 9c6fe98f76
commit db03c7428c

View File

@ -1127,11 +1127,11 @@ user_roster(User, Server, Query, Lang) ->
++
[?XAE(<<"form">>,
[{<<"action">>, <<"">>}, {<<"method">>, <<"post">>}],
(FItems ++
[?P, ?INPUT(<<"text">>, <<"newjid">>, <<"">>),
( [?P, ?INPUT(<<"text">>, <<"newjid">>, <<"">>),
?C(<<" ">>),
?INPUTT(<<"submit">>, <<"addjid">>,
?T("Add Jabber ID"))]))].
?T("Add Jabber ID"))]
++ FItems))].
build_contact_jid_td(RosterJID) ->
ContactJID = jid:make(RosterJID),