Skip to content

Commit

Permalink
replace images/splashscreens
Browse files Browse the repository at this point in the history
  • Loading branch information
dysTOS committed Nov 11, 2023
1 parent 86db0f2 commit a7db21a
Show file tree
Hide file tree
Showing 106 changed files with 801 additions and 803 deletions.
146 changes: 0 additions & 146 deletions CHANGELOG.md

This file was deleted.

4 changes: 2 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@
"glob": "*.ico"
},
{
"input": "src/configurations/gmr/assets",
"output": "assets/",
"input": "src/configurations/gmr/assets/images",
"output": "assets/images",
"glob": "*.*"
}
]
Expand Down
2 changes: 1 addition & 1 deletion src/app/app.topbar.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { environment } from "src/environments/environment";
<div class="topbar clearfix">
<div class="logo">
<a routerLink="/">
<img src="assets/mkjICONS/LOGO_APP_Favicon.png" />
<img src="assets/images/app_logo.png" />
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/app.accessdenied.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div class="exception-content">
<h3>Zugriff verweigert!</h3>
<p>Du hast keine Berechtigung.</p>
<img src="assets/mkjICONS/LOGO_APP_Favicon.png" />
<img src="assets\images\app_logo.png" />
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion src/app/pages/app.error.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div class="exception-content">
<h3>Fehler</h3>
<p>Bitte versuche es später erneut!</p>
<img src="assets/mkjICONS/LOGO_APP_Favicon.png" />
<img src="assets\images\app_logo.png" />
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion src/app/pages/app.notfound.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div class="exception-content">
<h3>Seite nicht gefunden</h3>
<p></p>
<img src="assets/mkjICONS/LOGO_APP_Favicon.png" />
<img src="assets\images\app_logo.png" />
</div>
</div>
</div>
9 changes: 6 additions & 3 deletions src/app/pages/login/login.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
<div class="login-body">
<div class="login-panel p-fluid">
<div class="grid grid-nogutter">
<div class="col-12 login-header" style="margin-top: -5em">
<div class="col-12 login-header">
<h1>LOGIN</h1>
<h2>Willkommen bei der mkjAPP!</h2>
<img src="assets/mkjICONS/LOGO_APP_Favicon.png" />
<h2>
Wenn du das erste Mal hier bist, drücke unten auf
"Registrierung".
</h2>
<img src="assets\images\app_logo.png" />
</div>
<div class="col-12 pb-0 pt-0">
<span class="p-float-label">
Expand Down
3 changes: 1 addition & 2 deletions src/app/pages/login/login.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Component, OnInit } from "@angular/core";
import { Router } from "@angular/router";
import { environment } from "src/environments/environment";
import { AuthStateService } from "src/app/services/authentication/auth-state.service";
import { AuthAPIService } from "src/app/services/authentication/auth-api.service";
import { AuthAPIService } from "src/app/services/api/auth-api.service";
import { TokenService } from "src/app/services/authentication/token.service";
import { UserService } from "src/app/services/authentication/user.service";
import { InfoService } from "src/app/services/info.service";
Expand Down Expand Up @@ -46,7 +46,6 @@ export class LoginComponent implements OnInit {
this.isChecking = true;
this.authService.login(this.user).subscribe(
(result) => {
console.log(result);
this.tokenService.saveToken(result.token);
this.authState.setAuthState(true);
this.userService.setCurrentUser(result.user);
Expand Down
9 changes: 6 additions & 3 deletions src/app/pages/signup/signup.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
<div class="login-body">
<div class="login-panel p-fluid">
<div class="grid grid-nogutter">
<div class="col-12 login-header" style="margin-top: -7em">
<div class="col-12 login-header">
<h1>Registrierung</h1>
<h2>Wilkommen bei der mkjAPP!</h2>
<img src="assets/mkjICONS/LOGO_APP_Favicon.png" />
<h2>
Erste Registrierung - bitte beachte das deine Mail-Adresse
dem Administrator schon bekannt sein muss.
</h2>
<img src="assets\images\app_logo.png" />
</div>
<div class="col-12 pb-0 pt-0">
<span class="p-float-label">
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/signup/signup.component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, OnInit } from "@angular/core";
import { Router } from "@angular/router";
import { UserRegistrationInput } from "src/app/interfaces/api-middleware";
import { AuthAPIService } from "src/app/services/authentication/auth-api.service";
import { AuthAPIService } from "src/app/services/api/auth-api.service";
import { InfoService } from "src/app/services/info.service";

@Component({
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/app/services/authentication/user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { BehaviorSubject } from "rxjs/internal/BehaviorSubject";
import { Gruppe } from "src/app/models/Gruppe";
import { Mitglied } from "../../models/Mitglied";
import { Permission, Role, User } from "../../models/User";
import { AuthAPIService } from "./auth-api.service";
import { AuthAPIService } from "../api/auth-api.service";
import { TokenService } from "./token.service";

@Injectable({
Expand Down
4 changes: 2 additions & 2 deletions src/app/services/theme.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export class ThemeService {
private themePrefix = environment.prefix;

public darkMode: boolean = false;
public layoutMode: string = "static";
public inputStyle: string = "outlined";
public layoutMode: "static" | "overlay" = "static";
public inputStyle: "outlined" | "filled" = "outlined";

constructor() {
this.initLocalSettings();
Expand Down
Binary file added src/assets/images/10.2__iPad_landscape.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/10.2__iPad_portrait.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/10.5__iPad_Air_landscape.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/10.5__iPad_Air_portrait.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/10.9__iPad_Air_landscape.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/10.9__iPad_Air_portrait.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/12.9__iPad_Pro_landscape.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/12.9__iPad_Pro_portrait.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/8.3__iPad_Mini_landscape.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/8.3__iPad_Mini_portrait.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/app_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/icon.png
Binary file added src/assets/images/icon_192x192.png
Binary file removed src/assets/mkjICONS/LOGO_APP_Favicon.png
Diff not rendered.
6 changes: 3 additions & 3 deletions src/assets/sass/layout/_login.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
.login-body {
background-color: var(--surface-200);
background-color: var(--surface-0);
padding-top: 200px;
height: auto;
background: url("../layout/images/login/login-image.png") no-repeat;
background-position: 0 -100px;

.login-panel {
background-color: var(--surface-200);
background-color: var(--surface-100);
width: 400px;
margin: 0 auto;
padding-bottom: 20px;
Expand All @@ -32,6 +31,7 @@
font-size: 14px;
font-weight: normal;
margin-top: 0;
padding-right: 5rem;
}

img {
Expand Down
4 changes: 1 addition & 3 deletions src/assets/sass/layout/_splash.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.splash-screen {
background: $primaryColor;
background: $topBarColor;
width: 100%;
height: 100%;
position: fixed;
Expand All @@ -12,8 +12,6 @@
width: 100px;
height: 100px;
border-radius: 100%;
background-color: #0a423b;
border: 10px solid #0a423b;

img {
width: 100px;
Expand Down
8 changes: 4 additions & 4 deletions src/assets/theme/base/gmr/theme-gmr-dark.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
$primaryColor: #b00000;
$primaryLightColor: #b00000;
$primaryColor: #bf0000;
$primaryLightColor: #bf0000;
$primaryTextColor: #e8f5e9;
$primaryTextHoverColor: #ffffff;
$topBarColor: #b00000;
$topBarColor: #bf0000;
$accentColor: #fbc02d;
$accentLightColor: #fff9c4;
$accentTextColor: #000000;
$activeMenuItemTextColor: #b00000;
$activeMenuItemTextColor: #bf0000;
$darkActiveMenuItemTextColor: #bb0101;
$darkMenuItemTextColor: #dee0e3;
$darkMenuItemInactiveTextColor: #757575;
Expand Down
8 changes: 4 additions & 4 deletions src/assets/theme/base/gmr/theme-gmr-light.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
$primaryColor: #b00000;
$primaryLightColor: #b00000;
$primaryColor: #bf0000;
$primaryLightColor: #bf0000;
$primaryTextColor: #e8f5e9;
$primaryTextHoverColor: #ffffff;
$topBarColor: #b00000;
$topBarColor: #bf0000;
$accentColor: #fbc02d;
$accentLightColor: #fff9c4;
$accentTextColor: #000000;
$activeMenuItemTextColor: #b00000;
$activeMenuItemTextColor: #bf0000;
$darkActiveMenuItemTextColor: #bb0101;
$darkMenuItemTextColor: #dee0e3;
$darkMenuItemInactiveTextColor: #757575;
Expand Down
Loading

0 comments on commit a7db21a

Please sign in to comment.