Mercurial > prosody-modules
view mod_jsxc/templates/template.js @ 5628:9aace51c3637
mod_http_oauth2: Bail on invalid or expired device flow state token
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 04 Aug 2023 01:11:01 +0200 |
parents | 4bdfd83e091f |
children |
line wrap: on
line source
$(function() { let jsxc = new JSXC({ loadConnectionOptions: function(username, password) { return Promise.resolve(%s); } }); let formElement = $('#jsxc_login_form'); let usernameElement = $('#jsxc_username'); let passwordElement = $('#jsxc_password'); jsxc.watchForm(formElement, usernameElement, passwordElement); });