aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/login
diff options
context:
space:
mode:
Diffstat (limited to 'ufund-ui/src/app/components/login')
-rw-r--r--ufund-ui/src/app/components/login/login.component.css3
-rw-r--r--ufund-ui/src/app/components/login/login.component.html2
2 files changed, 3 insertions, 2 deletions
diff --git a/ufund-ui/src/app/components/login/login.component.css b/ufund-ui/src/app/components/login/login.component.css
index cae0992..c752de3 100644
--- a/ufund-ui/src/app/components/login/login.component.css
+++ b/ufund-ui/src/app/components/login/login.component.css
@@ -10,11 +10,12 @@
display: flex;
flex-direction: column;
max-width: 330px;
- gap: 5px;
+ gap: 7px;
backdrop-filter: blur(10px);
background-color: rgba(0, 0, 0, 0.1);
padding: 30px;
color: white;
+ border-radius: 5px;
}
.border {
diff --git a/ufund-ui/src/app/components/login/login.component.html b/ufund-ui/src/app/components/login/login.component.html
index aff108f..516b07b 100644
--- a/ufund-ui/src/app/components/login/login.component.html
+++ b/ufund-ui/src/app/components/login/login.component.html
@@ -1,6 +1,6 @@
<div id="box">
<span *ngIf="next" style="color: red">You must be logged in to view this page</span>
- <p>Login:</p>
+ <h1>Login</h1>
<input placeholder="Username" type="text" #username>
<input placeholder="Password" type="password" #password>
<button type="button" (click)="login(username.value, password.value)">Login</button>