settings button, dialog with tabs. Change password form, currently without implementation

This commit is contained in:
azivner
2017-09-10 23:10:32 -04:00
parent 7c0f89bc95
commit 9787ce432a
2 changed files with 51 additions and 9 deletions

14
static/js/settings.js Normal file
View File

@@ -0,0 +1,14 @@
function displaySettings() {
$("#settingsDialog").dialog({
modal: true,
width: 600
});
$("#settingsTabs").tabs();
}
$("#changePasswordForm").submit(() => {
console.log("Submit");
return false;
});