Fixe style media manager and text modale

This commit is contained in:
Gregoire Parant 2020-10-13 21:54:08 +02:00
parent 3e74e178fb
commit 436cde7033
2 changed files with 24 additions and 9 deletions

View file

@ -562,9 +562,15 @@ export class MediaManager {
divReport.appendChild(inputHidden);
const titleMessage = document.createElement('p');
titleMessage.innerText = 'Vous souhaitez report : ' + userName;
titleMessage.id = 'title-report-user';
titleMessage.innerText = 'Open a report';
divReport.appendChild(titleMessage);
const bodyMessage = document.createElement('p');
bodyMessage.id = 'body-report-user';
bodyMessage.innerText = `You are about to open a report regarding an offensive conduct from user ${userName.toUpperCase()}. Please explain to us how you think ${userName.toUpperCase()} breached the code of conduct.`;
divReport.appendChild(bodyMessage);
const imgReportUser = document.createElement('img');
imgReportUser.id = 'img-report-user';
imgReportUser.src = 'resources/logos/report.svg';
@ -572,7 +578,7 @@ export class MediaManager {
const textareaUser = document.createElement('textarea');
textareaUser.id = 'textarea-report-user';
textareaUser.placeholder = 'Laissez un commentaire pour confirmer le report de la personne';
textareaUser.placeholder = 'Write ...';
divReport.appendChild(textareaUser);
const buttonReport = document.createElement('button');