1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2026-05-16 09:21:12 +02:00
Files
pigallery2/frontend/app/login/login.component.html
T
2016-03-12 22:19:24 +01:00

13 lines
591 B
HTML

<form>
<div class="group">
<input type="text" [(ngModel)]="user.username"><span class="highlight"></span><span class="bar"></span>
<label *ngIf="!user.username">Username (or e-mail)</label>
</div>
<div class="group">
<input type="password" [(ngModel)]="user.password"><span class="highlight"></span><span class="bar"></span>
<label *ngIf="!user.password">Password</label>
</div>
<button type="button" class="button buttonBlue">Login
<div class="ripples buttonRipples"><span class="ripplesCircle"></span></div>
</button>
</form>