Updated user management and modal for password change.

This commit is contained in:
Brian McGonagill 2024-07-23 08:35:04 -05:00
parent 17b42b7d68
commit df3eb4ff08
5 changed files with 31 additions and 28 deletions

View file

@ -1,3 +1,5 @@
import { M } from '../../lib/assets/materialize.js';
Template.userInfoModal.onCreated(function() {
});
@ -5,7 +7,8 @@ Template.userInfoModal.onCreated(function() {
Template.userInfoModal.onRendered(function() {
Session.set("passMatch", true);
Session.set("passErr", false);
$('.modal').modal();
var elems = document.querySelectorAll('.modal');
var instances = M.Modal.init(elems, {});
});
Template.userInfoModal.helpers({