1
0
mirror of https://github.com/dkmstr/openuds-gui.git synced 2024-12-22 17:33:48 +03:00

Added "html" to mfa page

This commit is contained in:
Adolfo Gómez García 2022-07-06 17:40:11 +02:00
parent e3b4bdf501
commit f819465927
3 changed files with 16 additions and 0 deletions

View File

@ -33,3 +33,6 @@
</div>
</div>
</form>
<div class="mfa-html-container">
<div class="mfa-html" [innerHtml]="api.config.mfa.html| safeHtml"></div>
</div>

View File

@ -34,6 +34,18 @@
width: 100%;
}
.mfa-info {
margin: 1rem;
}
.mfa-html-container {
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
margin: 1rem;
}
/* responsive part */
@media only screen and (max-width: 744px) {
.mfa-form {

View File

@ -43,6 +43,7 @@ export interface MFAInfo {
label: string;
validity: number;
remember_device: string; // String indicaten the time the device will be remembered
html: string;
}
export interface UDSConfig {