aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui
diff options
context:
space:
mode:
authorGunther6070 <haydenhartman10@yahoo.com>2025-04-02 13:56:01 -0400
committerGunther6070 <haydenhartman10@yahoo.com>2025-04-02 13:56:01 -0400
commit6b7c830eeefb6a6a28136a3faacf7713953a6138 (patch)
tree9cccf8036319152a2f059c92d7a0905b57d7fa8c /ufund-ui
parent6ce39f0facc6ae38ff42d1e8efe091f528afc5a0 (diff)
parent430bd8d3d13f3716160889d6f18fcb2cd08fcf39 (diff)
downloadJellySolutions-6b7c830eeefb6a6a28136a3faacf7713953a6138.tar.gz
JellySolutions-6b7c830eeefb6a6a28136a3faacf7713953a6138.tar.bz2
JellySolutions-6b7c830eeefb6a6a28136a3faacf7713953a6138.zip
Merge remote-tracking branch 'origin/css' into css
Diffstat (limited to 'ufund-ui')
-rw-r--r--ufund-ui/src/app/components/login/login.component.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/ufund-ui/src/app/components/login/login.component.html b/ufund-ui/src/app/components/login/login.component.html
index c67b903..1017d0f 100644
--- a/ufund-ui/src/app/components/login/login.component.html
+++ b/ufund-ui/src/app/components/login/login.component.html
@@ -1,7 +1,7 @@
<div id="box">
<h1>Login</h1>
- <input placeholder="Username" type="text" #username>
- <input placeholder="Password" type="password" #password>
+ <input placeholder="Username" type="text" #username (keydown.enter)="login(username.value, password.value)">
+ <input placeholder="Password" type="password" #password (keydown.enter)="login(username.value, password.value)">
<button type="button" (click)="login(username.value, password.value)">Login</button>
<div>
New? <a routerLink="/signup">Create an account</a>