diff options
| author | crupest <crupest@outlook.com> | 2019-04-11 19:18:37 +0800 |
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2019-04-11 19:18:37 +0800 |
| commit | a21a82474afa393d142ed27a410e759608704979 (patch) | |
| tree | 4b54d0a07311a910bb14fcaf949a126ab52a452b /Timeline/ClientApp/src/app/user/user-login/user-login.component.ts | |
| parent | e436cf9ebb4776e3c837f1b0935f3ea2bf254d79 (diff) | |
| download | timeline-a21a82474afa393d142ed27a410e759608704979.tar.gz timeline-a21a82474afa393d142ed27a410e759608704979.tar.bz2 timeline-a21a82474afa393d142ed27a410e759608704979.zip | |
Add remember me.
Diffstat (limited to 'Timeline/ClientApp/src/app/user/user-login/user-login.component.ts')
| -rw-r--r-- | Timeline/ClientApp/src/app/user/user-login/user-login.component.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Timeline/ClientApp/src/app/user/user-login/user-login.component.ts b/Timeline/ClientApp/src/app/user/user-login/user-login.component.ts index 836202de..4395c5cf 100644 --- a/Timeline/ClientApp/src/app/user/user-login/user-login.component.ts +++ b/Timeline/ClientApp/src/app/user/user-login/user-login.component.ts @@ -19,7 +19,8 @@ export class UserLoginComponent implements OnInit { form = new FormGroup({ username: new FormControl(''), - password: new FormControl('') + password: new FormControl(''), + rememberMe: new FormControl(false) }); ngOnInit() { |
