mirror of
https://github.com/LucasVbr/meeting-app.git
synced 2026-07-09 15:08:06 +00:00
feat(login / register form): Added validation and birthdate to form
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
export class RegisterData {
|
||||
|
||||
constructor(
|
||||
public firstName: string = "",
|
||||
public lastName: string = "",
|
||||
public email: string = "",
|
||||
public password: string = "",
|
||||
public confirmPassword: string = "",
|
||||
public firstName: string = "",
|
||||
public lastName: string = "",
|
||||
public email: string = "",
|
||||
public birthdate: string = "",
|
||||
public password: string = "",
|
||||
public confirmPassword: string = ""
|
||||
) {}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user