From 85d12b723462f039b6ffb510be109d31da955d5f Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Thu, 7 Aug 2025 22:43:53 -0700 Subject: [PATCH] Add in legal to auth --- .../pages/legal/about/about.component.html | 25 +++++++++++++++++++ .../app/pages/legal/about/about.component.ts | 20 +++++++++++++++ .../legal/contact/contact.component.html | 11 ++++++++ .../pages/legal/contact/contact.component.ts | 20 +++++++++++++++ .../pages/legal/privacy/privacy.component.css | 15 +++++++++++ .../legal/privacy/privacy.component.html | 11 ++++++++ .../pages/legal/privacy/privacy.component.ts | 20 +++++++++++++++ 7 files changed, 122 insertions(+) create mode 100644 src/Client/src/app/pages/legal/about/about.component.html create mode 100644 src/Client/src/app/pages/legal/about/about.component.ts create mode 100644 src/Client/src/app/pages/legal/contact/contact.component.html create mode 100644 src/Client/src/app/pages/legal/contact/contact.component.ts create mode 100644 src/Client/src/app/pages/legal/privacy/privacy.component.css create mode 100644 src/Client/src/app/pages/legal/privacy/privacy.component.html create mode 100644 src/Client/src/app/pages/legal/privacy/privacy.component.ts diff --git a/src/Client/src/app/pages/legal/about/about.component.html b/src/Client/src/app/pages/legal/about/about.component.html new file mode 100644 index 0000000..c31f710 --- /dev/null +++ b/src/Client/src/app/pages/legal/about/about.component.html @@ -0,0 +1,25 @@ +
+
+

Welcome to Mistox LLC. A project and hobby of Derek Holloway.

+
+

I am an indi-developer who has been making small projects since I was 13. I originally learned lua and spent 4 years mastering it. Then I moved onto C# which is my preferred language

+

My programming catalog consist of C#, Lua, SQL, C++, C, and JavaScript in the order of knowledge from best to passiable.

+

Im currently in college for computer sciences and should honestly be doing that instead of this but I find working on this website and hobby games to be way more enjoyable.

+
+

I would love to learn how to use Blender in order to make all the models for my games but with the amount of work ive already made for myself im going to hold off for now.

+

This website and everything on it are the long countless hours of my time and motivation to create something that I can be proud of and share that with the world.

+

So if you would like to support me as a small creator please feel free to leave a donation from on the store page. It would means a lot to me.

+
+

For the nerds out there, this website is a blazor webassembly app, hosted on an ubuntu webserver, with a mysql backend.

+

All the passwords are encrypted using bcrypt for your safety and all the data is only allowed through SSL.

+

After you make your account. All the data in the database is easily accessable through the account settings and

+

you can delete your account at any time. Including all your data with it so there is no risk.

+

I wont show ads and never will and I refuse to use trackers on this site.

+ +
+ + Buy Me a Coffee at ko-fi.com + +
+
+
\ No newline at end of file diff --git a/src/Client/src/app/pages/legal/about/about.component.ts b/src/Client/src/app/pages/legal/about/about.component.ts new file mode 100644 index 0000000..24cb909 --- /dev/null +++ b/src/Client/src/app/pages/legal/about/about.component.ts @@ -0,0 +1,20 @@ +import { Component } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { FormsModule } from '@angular/forms'; +import { Router, ActivatedRoute } from '@angular/router'; +import { Title } from '@angular/platform-browser'; +import { CommonModule } from '@angular/common'; + +@Component({ + selector: 'legal-about', + templateUrl: './about.component.html', + styleUrls: [ './about.component.css' ], + imports: [ FormsModule, CommonModule ] +}) +export class AboutComponent { + + constructor( private http: HttpClient, private router: Router, private route: ActivatedRoute, private title: Title ) { + this.title.setTitle("About | Mistox"); + }; + +} \ No newline at end of file diff --git a/src/Client/src/app/pages/legal/contact/contact.component.html b/src/Client/src/app/pages/legal/contact/contact.component.html new file mode 100644 index 0000000..29da843 --- /dev/null +++ b/src/Client/src/app/pages/legal/contact/contact.component.html @@ -0,0 +1,11 @@ +
+ +
+ +
+ +
+ +
+ +
\ No newline at end of file diff --git a/src/Client/src/app/pages/legal/contact/contact.component.ts b/src/Client/src/app/pages/legal/contact/contact.component.ts new file mode 100644 index 0000000..eaa44cf --- /dev/null +++ b/src/Client/src/app/pages/legal/contact/contact.component.ts @@ -0,0 +1,20 @@ +import { Component } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { FormsModule } from '@angular/forms'; +import { Router, ActivatedRoute } from '@angular/router'; +import { Title } from '@angular/platform-browser'; +import { CommonModule } from '@angular/common'; + +@Component({ + selector: 'legal-contact', + templateUrl: './contact.component.html', + styleUrls: [ './contact.component.css' ], + imports: [ FormsModule, CommonModule ] +}) +export class ContactComponent { + + constructor( private http: HttpClient, private router: Router, private route: ActivatedRoute, private title: Title ) { + this.title.setTitle("Contact | BoredCareers"); + }; + +} \ No newline at end of file diff --git a/src/Client/src/app/pages/legal/privacy/privacy.component.css b/src/Client/src/app/pages/legal/privacy/privacy.component.css new file mode 100644 index 0000000..26081b8 --- /dev/null +++ b/src/Client/src/app/pages/legal/privacy/privacy.component.css @@ -0,0 +1,15 @@ +.center { + background-color: green; +} + +.tile-frame { + column-count: 4; + column-gap: 20px; + padding: 20px; + width: calc(100% - 40px); +} + +.tile{ + background-color: aqua; + height: 40px; +} \ No newline at end of file diff --git a/src/Client/src/app/pages/legal/privacy/privacy.component.html b/src/Client/src/app/pages/legal/privacy/privacy.component.html new file mode 100644 index 0000000..29da843 --- /dev/null +++ b/src/Client/src/app/pages/legal/privacy/privacy.component.html @@ -0,0 +1,11 @@ +
+ +
+ +
+ +
+ +
+ +
\ No newline at end of file diff --git a/src/Client/src/app/pages/legal/privacy/privacy.component.ts b/src/Client/src/app/pages/legal/privacy/privacy.component.ts new file mode 100644 index 0000000..9543545 --- /dev/null +++ b/src/Client/src/app/pages/legal/privacy/privacy.component.ts @@ -0,0 +1,20 @@ +import { Component } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { FormsModule } from '@angular/forms'; +import { Router, ActivatedRoute } from '@angular/router'; +import { Title } from '@angular/platform-browser'; +import { CommonModule } from '@angular/common'; + +@Component({ + selector: 'legal-privacy', + templateUrl: './privacy.component.html', + styleUrls: [ './privacy.component.css' ], + imports: [ FormsModule, CommonModule ] +}) +export class PrivacyComponent { + + constructor( private http: HttpClient, private router: Router, private route: ActivatedRoute, private title: Title ) { + this.title.setTitle("Privacy | BoredCareers"); + }; + +} \ No newline at end of file