Added end to end encryption

This commit is contained in:
Aslan 2026-01-13 17:33:23 -05:00
parent 9153ba841d
commit 575e9e2010
131 changed files with 2289 additions and 1670 deletions

View file

@ -13,8 +13,14 @@ const Message: Component<IMessageProps> = (props: IMessageProps) => {
</div>
</div>
<div>
<div>{props.username}</div>
<p class="list-col-wrap text-xs">{props.message}</p>
<div class="font-bold">{props.username}</div>
{props.decryptionStatus ? (
<p class="list-col-wrap text-xs">{props.message}</p>
) : (
<p class="list-col-wrap text-xs italic">
Decryption failed
</p>
)}
</div>
</li>
);