33 lines
721 B
HTML
Raw Normal View History

2019-10-04 13:45:02 +09:00
<div fxLayout="column">
<button
mat-raised-button
color="accent"
class="submit-button"
aria-label="Login"
(click)="onClickLogin()"
>
Login
</button>
2019-10-02 17:12:51 +09:00
<h3>User-list-item</h3>
<div>
2019-10-04 13:45:02 +09:00
<ucap-profile-user-list-item
[userInfo]="userInfo"
[profileImageRoot]="profileImageRoot"
[presence]="presence"
>
2019-10-02 17:12:51 +09:00
</ucap-profile-user-list-item>
2019-10-04 13:45:02 +09:00
<ucap-profile-user-list-item
[userInfo]="userInfo"
[profileImageRoot]="profileImageRoot"
>
2019-10-02 17:12:51 +09:00
</ucap-profile-user-list-item>
2019-10-04 13:45:02 +09:00
<ucap-profile-user-list-item
[userInfo]="userInfo"
[profileImageRoot]="profileImageRoot"
[checkable]="true"
>
2019-10-02 17:12:51 +09:00
</ucap-profile-user-list-item>
</div>
</div>