Derp
This commit is contained in:
parent
8d4627f5f6
commit
59ce3c43fd
@ -2,7 +2,7 @@
|
|||||||
<ion-grid class="ion-align-items-center">
|
<ion-grid class="ion-align-items-center">
|
||||||
<ion-row class="ion-align-items-center" style="height: 100%" *ngIf="step === 'greeter'">
|
<ion-row class="ion-align-items-center" style="height: 100%" *ngIf="step === 'greeter'">
|
||||||
<ion-col class="ion-align-items-end" style="text-align: right">
|
<ion-col class="ion-align-items-end" style="text-align: right">
|
||||||
<img src="/assets/icon/logo_lines.svg" alt="Noded" width="200">
|
<img [src]="logoUrl" alt="Noded" width="200">
|
||||||
</ion-col>
|
</ion-col>
|
||||||
<ion-col style="padding: 40px;">
|
<ion-col style="padding: 40px;">
|
||||||
<div class="hero" style="font-size: 2em;"><b style="font-size: 1.5em;">Noded</b><br>is your information, organized.</div>
|
<div class="hero" style="font-size: 2em;"><b style="font-size: 1.5em;">Noded</b><br>is your information, organized.</div>
|
||||||
@ -15,7 +15,7 @@
|
|||||||
</ion-row>
|
</ion-row>
|
||||||
<ion-row class="ion-align-items-center" style="height: 100%" *ngIf="step === 'username' || step === 'password' || step === 'create-account'">
|
<ion-row class="ion-align-items-center" style="height: 100%" *ngIf="step === 'username' || step === 'password' || step === 'create-account'">
|
||||||
<ion-col class="ion-align-items-center" style="text-align: center">
|
<ion-col class="ion-align-items-center" style="text-align: center">
|
||||||
<img src="/assets/icon/logo_lines.svg" alt="Noded" height="100" style="margin-bottom: 20px;">
|
<img [src]="logoUrl" alt="Noded" height="100" style="margin-bottom: 20px;">
|
||||||
<p class="message">{{ stepMessages[step] }}</p>
|
<p class="message">{{ stepMessages[step] }}</p>
|
||||||
<ion-item>
|
<ion-item>
|
||||||
<ion-input
|
<ion-input
|
||||||
|
@ -34,6 +34,8 @@ export class LoginPage implements OnInit {
|
|||||||
public userInfo: any = {};
|
public userInfo: any = {};
|
||||||
public errorMessage = '';
|
public errorMessage = '';
|
||||||
|
|
||||||
|
public readonly logoUrl = environment.logoUrl;
|
||||||
|
|
||||||
public readonly coreidUrl: string;
|
public readonly coreidUrl: string;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
|
Loading…
Reference in New Issue
Block a user