- <body style="justify-content: center;display: flex;">
- <table style="width: 95%;height: 100%;">
- <tr>
- <td colspan="10" style="text-align: left">
- <a *ngIf="username !== null" translate="footer.log_info"><b>{{username}}</b></a>
- </td>
- <td style="text-align: right" translate="footer.langs">
- </td>
- <td *ngIf="lang == 'en'" style="width: 3%;text-align: center" (click)="change_lang('en')"><b>ENG</b></td>
- <td *ngIf="lang != 'en'" style="width: 3%;text-align: center" (click)="change_lang('en')">ENG</td>
- <td *ngIf="lang == 'pl'" style="width: 3%;text-align: center" (click)="change_lang('pl')"><b>PL</b></td>
- <td *ngIf="lang != 'pl'" style="width: 3%;text-align: center" (click)="change_lang('pl')">PL</td>
- </tr>
- </table>
- </body>
|