Sengi-Windows-MacOS-Linux/src/app/components/left-side-bar/left-side-bar.component.html

23 lines
497 B
HTML
Raw Normal View History

2018-03-16 01:43:53 +01:00
<div id="mam-left-bar">
2018-03-16 03:43:41 +01:00
<div id="mam-create-toot">
<a href title="write toot!" (click)="createNewToot()">Toot!</a>
</div>
<div *ngFor="let account of accounts" >
<app-account-icon [account]="account" ></app-account-icon>
<!-- <a href title="{{ account.username }}" (click)="toogleAccount(account.id)"><img src="{{ account.avatar }}" /></a> -->
2018-03-16 03:43:41 +01:00
</div>
2018-03-16 03:43:41 +01:00
<div id="mam-account-add">
<a href title="add new account" [routerLink]="['/register']">+</a>
2018-03-16 03:43:41 +01:00
</div>
2018-03-16 01:43:53 +01:00
</div>