footer.component.html 765 B

123456789101112131415
  1. <body style="justify-content: center;display: flex;">
  2. <table style="width: 95%;height: 100%;">
  3. <tr>
  4. <td colspan="10" style="text-align: left">
  5. <a *ngIf="username !== null" translate="footer.log_info"><b>{{username}}</b></a>
  6. </td>
  7. <td style="text-align: right" translate="footer.langs">
  8. </td>
  9. <td *ngIf="lang == 'en'" style="width: 3%;text-align: center" (click)="change_lang('en')"><b>ENG</b></td>
  10. <td *ngIf="lang != 'en'" style="width: 3%;text-align: center" (click)="change_lang('en')">ENG</td>
  11. <td *ngIf="lang == 'pl'" style="width: 3%;text-align: center" (click)="change_lang('pl')"><b>PL</b></td>
  12. <td *ngIf="lang != 'pl'" style="width: 3%;text-align: center" (click)="change_lang('pl')">PL</td>
  13. </tr>
  14. </table>
  15. </body>