diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-02-26 22:50:01 -0500 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-02-26 22:50:01 -0500 |
commit | 897a4d53505d23c8b1f96c14b0a8984932fae699 (patch) | |
tree | 664090526d6f6674daadf4246651f7e3c58efa60 /ufund-ui/src/app/components/login | |
parent | 501ac045d6042f194e2a5dbc4d7f4abccaf2732b (diff) | |
download | JellySolutions-897a4d53505d23c8b1f96c14b0a8984932fae699.tar.gz JellySolutions-897a4d53505d23c8b1f96c14b0a8984932fae699.tar.bz2 JellySolutions-897a4d53505d23c8b1f96c14b0a8984932fae699.zip |
Clean up project and start implementation of user sign in system
Diffstat (limited to 'ufund-ui/src/app/components/login')
3 files changed, 3 insertions, 24 deletions
diff --git a/ufund-ui/src/app/components/login/login.component.css b/ufund-ui/src/app/components/login/login.component.css index 4cef8a0..afd4bf1 100644 --- a/ufund-ui/src/app/components/login/login.component.css +++ b/ufund-ui/src/app/components/login/login.component.css @@ -1,4 +1,6 @@ :host { display: flex; flex-direction: column; + max-width: 300px; + gap: 5px } diff --git a/ufund-ui/src/app/components/login/login.component.html b/ufund-ui/src/app/components/login/login.component.html index 1bf2a3f..41427ae 100644 --- a/ufund-ui/src/app/components/login/login.component.html +++ b/ufund-ui/src/app/components/login/login.component.html @@ -2,4 +2,4 @@ <input placeholder="Username" type="text"> <input placeholder="Password" type="password"> <button>Login</button> -<button>Create Account</button> +<button>Create Account...</button> diff --git a/ufund-ui/src/app/components/login/login.component.spec.ts b/ufund-ui/src/app/components/login/login.component.spec.ts deleted file mode 100644 index 4adbc3d..0000000 --- a/ufund-ui/src/app/components/login/login.component.spec.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ComponentFixture, TestBed } from '@angular/core/testing'; - -import { LoginComponent } from './login.component'; - -describe('LoginComponent', () => { - let component: LoginComponent; - let fixture: ComponentFixture<LoginComponent>; - - beforeEach(async () => { - await TestBed.configureTestingModule({ - declarations: [LoginComponent] - }) - .compileComponents(); - - fixture = TestBed.createComponent(LoginComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); |