You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
pocketcommunityweb/src/app/account/resetpwd/resetpwd.component.ts

35 lines
662 B

import { Component, OnInit } from '@angular/core';
import { FormBuilder } from '@angular/forms';
import {Commons} from '../../commons';
@Component({
selector: 'app-resetpwd',
templateUrl: './resetpwd.component.html',
styleUrls: ['./resetpwd.component.scss']
})
// 重置密码模块
export class ResetpwdComponent extends Commons implements OnInit {
// 重置密码表单
resetForm = this.fb.group({
managerName: [],
email: [],
verificationCode: []
});
constructor(private fb: FormBuilder) {
super();
}
ngOnInit(): void {
}
sendCode(){
alert('发送验证码');
}
resetPwd(){
alert('重置密码');
}
}