changed the "done" step to force user to login when done.

pull/1/head
Chris Veilleux 2019-02-15 13:50:36 -06:00
parent 16213fa228
commit 450000dd46
2 changed files with 18 additions and 7 deletions

View File

@ -1,5 +1,5 @@
<h2 class="mat-h2">You're Done!</h2> <mat-card fxLayout="column" fxLayoutAlign="center center" class="mat-elevation-z0">
<p class="mat-body">Your account has been created. We are excited to have you as part of our community.</p> <h1 class="mat-h1">You're Done!</h1>
<button mat-button>Setup Device</button> <p class="mat-body">Your account has been created. We are excited to have you as part of our community.</p>
<button mat-button>Wake Word Tagging</button> <button mat-button>Login to Your New Account</button>
<button mat-button>Text to Speech Tagging</button> </mat-card>

View File

@ -1,6 +1,17 @@
@import "~@angular/material/theming"; @import "~@angular/material/theming";
@import "~src/stylesheets/components/buttons"; @import "~src/stylesheets/components/buttons";
button { mat-card {
@include action-button-primary; margin-left: auto;
margin-right: auto;
max-width: 700px;
h1 {
color: mat-color($mycroft-primary);
}
button {
@include action-button-primary;
margin-top: 16px;
}
} }