2022-11-16 01:44:39 +00:00
|
|
|
import './style.scss';
|
2015-01-23 13:09:30 +00:00
|
|
|
|
2022-11-16 01:44:39 +00:00
|
|
|
export default new Class({
|
|
|
|
Extends: Hedera.Form,
|
|
|
|
Template: require('./ui.xml'),
|
|
|
|
|
2022-11-16 01:46:44 +00:00
|
|
|
activate() {
|
2022-05-28 01:18:06 +00:00
|
|
|
this.$.userModel.setInfo('c', 'myClient', 'hedera');
|
|
|
|
this.$.userModel.setInfo('u', 'myUser', 'account');
|
2023-08-07 05:25:11 +00:00
|
|
|
this.$.changePassword.conn = this.conn
|
|
|
|
this.$.changePassword.user = this.gui.user
|
2016-10-11 14:45:10 +00:00
|
|
|
}
|
2023-08-07 05:25:11 +00:00
|
|
|
});
|