image video à la place de iframe

This commit is contained in:
MiharyR 2021-11-19 15:42:51 +01:00
parent 500b32626e
commit b045f507d2
92 changed files with 945 additions and 656 deletions

View file

@ -23,12 +23,12 @@ export class PageRegisterComponent
_id: "",
login: "",
hashPass: "",
mail: "",
email: "",
role: {
name: "user",
permission: 0,
},
profilePictureUrl: "",
profileImageUrl: "",
dateOfBirth: null,
gender: "man",
interests: [],
@ -98,11 +98,11 @@ export class PageRegisterComponent
this.errorMessage = "Veuillez remplir le champ 'login'.";
this.hasError = true;
}
else if(this.user.mail.length === 0) {
else if(this.user.email.length === 0) {
this.errorMessage = "Veuillez remplir le champ 'email'.";
this.hasError = true;
}
else if(!this.isValidEmail(this.user.mail)) {
else if(!this.isValidEmail(this.user.email)) {
this.errorMessage = "Email invalide.";
this.hasError = true;
}