up login page
This commit is contained in:
parent
92cbbb1595
commit
3b95c7871c
49 changed files with 12320 additions and 43 deletions
|
@ -33,7 +33,5 @@ cd ../../../sae-csc
|
|||
echo "Utilisation du lien dans l'application sae-csc..."
|
||||
npm link sae-lib
|
||||
|
||||
cd ../sae-airwatch
|
||||
npm link sae-lib
|
||||
|
||||
echo "Lien créé avec succès. sae-lib est maintenant disponible comme un module npm."
|
||||
|
|
|
@ -19,17 +19,16 @@
|
|||
|
||||
<p>
|
||||
|
||||
<!-- <sae-m-button (click)="login()" [icon]="'ri-arrow-right-line'" [inconPosition]="'right'" [label]="'Login to start'"-->
|
||||
<!-- [style]="'primary'"></sae-m-button>-->
|
||||
<a class="button has-gradient" routerLink="/home">
|
||||
<span class="label">
|
||||
Login to start
|
||||
</span>
|
||||
<span class="pipe">
|
||||
|
|
||||
</span>
|
||||
<i class="ri-arrow-right-line"></i>
|
||||
</a>
|
||||
<sae-m-button
|
||||
[divider]="true"
|
||||
[icon]="'arrow-right-line'"
|
||||
[inconPosition]="'right'"
|
||||
[kind]="'primary'"
|
||||
[label]="'Login to start'"
|
||||
routerLink="/home"
|
||||
size="medium"
|
||||
|
||||
></sae-m-button>
|
||||
</p>
|
||||
<p class="request_access">
|
||||
First time to use CSC Solution Matcher ?
|
||||
|
|
|
@ -53,11 +53,19 @@
|
|||
color: variables.$main-color-300;
|
||||
width: 100%;
|
||||
margin-left: 24px;
|
||||
.label{
|
||||
font-size: variables.$spacing-4;
|
||||
text-decoration: underline;
|
||||
|
||||
.label {
|
||||
font-size: variables.$spacing-4;
|
||||
text-decoration: underline;
|
||||
margin-right: 6px;
|
||||
font-size: 14px;
|
||||
}
|
||||
&.bottom{
|
||||
|
||||
.icon {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
&.bottom {
|
||||
margin-left: 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
@ -65,7 +73,8 @@
|
|||
|
||||
.magic-text {
|
||||
color: variables.$csc-magic-color;
|
||||
i{
|
||||
|
||||
i {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
|
@ -83,7 +92,6 @@
|
|||
border: 0;
|
||||
|
||||
|
||||
|
||||
/* Body/Body 3/Sb */
|
||||
|
||||
font-size: variables.$spacing-4;
|
||||
|
@ -99,6 +107,11 @@
|
|||
font-weight: 600;
|
||||
line-height: 24px;
|
||||
|
||||
.label {
|
||||
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.technical-contact {
|
||||
|
@ -111,7 +124,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
i{
|
||||
i {
|
||||
font-size: variables.$spacing-4;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
import {Component} from '@angular/core';
|
||||
import {Router, RouterLink} from '@angular/router';
|
||||
import {MainButton} from 'sae-lib/buttons/main-button/main-button';
|
||||
|
||||
@Component({
|
||||
selector: 'app-login',
|
||||
imports: [
|
||||
RouterLink
|
||||
RouterLink,
|
||||
MainButton
|
||||
],
|
||||
templateUrl: './login.html',
|
||||
styleUrl: './login.scss'
|
||||
|
|
|
@ -45,33 +45,33 @@
|
|||
<hr>
|
||||
<section>
|
||||
|
||||
<h2>
|
||||
Feedback
|
||||
</h2>
|
||||
conversationID:
|
||||
<input [(ngModel)]="conversationID" type="text">
|
||||
<sae-m-button
|
||||
(click)="sendFeedback()"
|
||||
[kind]="'secondary'" class="button"
|
||||
label='envoi de feedback'>
|
||||
<h2>
|
||||
Feedback
|
||||
</h2>
|
||||
conversationID:
|
||||
<input [(ngModel)]="conversationID" type="text">
|
||||
<sae-m-button
|
||||
(click)="sendFeedback()"
|
||||
[kind]="'secondary'" class="button"
|
||||
label='envoi de feedback'>
|
||||
|
||||
</sae-m-button>
|
||||
</sae-m-button>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
<h2>Envoi de fichier</h2>
|
||||
<!-- <br>-->
|
||||
<sae-m-button
|
||||
(click)="sendFile()"
|
||||
class="button" kind="secondary"
|
||||
label='envoi de fichier'>
|
||||
<h2>Envoi de fichier</h2>
|
||||
<!-- <br>-->
|
||||
<sae-m-button
|
||||
(click)="sendFile()"
|
||||
class="button" kind="secondary"
|
||||
label='envoi de fichier'>
|
||||
|
||||
</sae-m-button>
|
||||
</sae-m-button>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
<h2>Suppression</h2>
|
||||
Delete /api/v1/conversations/{conversationID}
|
||||
Delete /api/v1/conversations/$conversationID
|
||||
<sae-m-button
|
||||
(click)="deleteConversation()"
|
||||
class="button" kind="secondary"
|
||||
|
@ -82,7 +82,7 @@
|
|||
<section>
|
||||
|
||||
<h2>Get last answer </h2>
|
||||
Get /api/v1/conversations/{conversationID}/last-answer
|
||||
Get /api/v1/conversations/$conversationID/last-answer
|
||||
|
||||
<sae-m-button
|
||||
(click)="getLastAnswer()"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue