diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-02-26 20:41:35 -0500 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-02-26 20:41:35 -0500 |
commit | 8a2d6c332a089c2dbb7351514499e16f343959ff (patch) | |
tree | 9451b9a92b8fc43ed88d215fd3b8a63a151f12f7 /ufund-ui/src/app/components/login | |
parent | 04910f9a8e8b30add77852ac2968acdbda834a83 (diff) | |
download | JellySolutions-8a2d6c332a089c2dbb7351514499e16f343959ff.tar.gz JellySolutions-8a2d6c332a089c2dbb7351514499e16f343959ff.tar.bz2 JellySolutions-8a2d6c332a089c2dbb7351514499e16f343959ff.zip |
Start services and organize project
Diffstat (limited to 'ufund-ui/src/app/components/login')
4 files changed, 43 insertions, 0 deletions
diff --git a/ufund-ui/src/app/components/login/login.component.css b/ufund-ui/src/app/components/login/login.component.css new file mode 100644 index 0000000..4cef8a0 --- /dev/null +++ b/ufund-ui/src/app/components/login/login.component.css @@ -0,0 +1,4 @@ +:host { + display: flex; + flex-direction: column; +} diff --git a/ufund-ui/src/app/components/login/login.component.html b/ufund-ui/src/app/components/login/login.component.html new file mode 100644 index 0000000..1bf2a3f --- /dev/null +++ b/ufund-ui/src/app/components/login/login.component.html @@ -0,0 +1,5 @@ +<p>Login:</p> +<input placeholder="Username" type="text"> +<input placeholder="Password" type="password"> +<button>Login</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 new file mode 100644 index 0000000..4adbc3d --- /dev/null +++ b/ufund-ui/src/app/components/login/login.component.spec.ts @@ -0,0 +1,23 @@ +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(); + }); +}); diff --git a/ufund-ui/src/app/components/login/login.component.ts b/ufund-ui/src/app/components/login/login.component.ts new file mode 100644 index 0000000..efb8a58 --- /dev/null +++ b/ufund-ui/src/app/components/login/login.component.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-login', + standalone: false, + templateUrl: './login.component.html', + styleUrl: './login.component.css' +}) +export class LoginComponent { + +} |