blob: c3c9ed739d86f639300160fcb67522330149a6de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<h2>
This page is under <span class="bold">construction</span>!
</h2>
<h2>
To-do list:
</h2>
<ol>
<li>Learn DI and Service module in Angular.</li>
<li>Develop basic authentication module.</li>
<li>Learn Bootstrap.</li>
</ol>
<div id="loginBox">
<label id="usernameLabel">username</label>
<input id="usernameInput" type="text" [(ngModel)]="loginInfo.username">
<label id="passwordLabel">password</label>
<input id="passwordInput" type="password" [(ngModel)]="loginInfo.password">
<input id="loginButton" type="button" value="Login" (click)="tryLogin()">
<div id="loginMessage">{{message}}</div>
</div>
|