SUPPORT-8830 first fixes
This commit is contained in:
parent
2bd86a7993
commit
2747452b88
6 changed files with 82 additions and 54 deletions
|
|
@ -4,6 +4,11 @@
|
|||
<title>Личный кабинет физ.лица</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<!-- <meta http-equiv="Content-Security-Policy"-->
|
||||
<!-- content="default-src 'self' 'unsafe-inline'; img-src https://* 'self' data:;">-->
|
||||
<meta http-equiv="Content-Security-Policy"
|
||||
content="frame-ancestors 'none'; default-src 'self'; style-src 'self'; script-src 'self';"/>
|
||||
<meta name="referrer" content="strict-origin-when-cross-origin"/>
|
||||
<link rel="icon" type="image/png" href="src/resources/img/logo.png"/>
|
||||
</head>
|
||||
<body webbpm class="webbpm ervu_lkrp_fl">
|
||||
|
|
|
|||
|
|
@ -1,6 +1,10 @@
|
|||
<button class="user-info" ngbDropdownToggle *ngIf="getIsAuth()">{{getUserFullname()}}</button>
|
||||
<div ngbDropdownMenu *ngIf="getIsAuth()">
|
||||
<a routerLink="/mydata" class="data">Мои данные</a>
|
||||
<button ngbDropdownItem class="exit" (click)="logout()">Выйти</button>
|
||||
<form ngbDropdownItem method="post" action="/esia/logout">
|
||||
<button class="exit" type="submit">Выйти</button>
|
||||
</form>
|
||||
</div>
|
||||
<button class="exit" *ngIf="!getIsAuth()" (click)="logout()">Выйти</button>
|
||||
<form method="post" action="/esia/logout">
|
||||
<button class="exit" type="submit">Выйти</button>
|
||||
</form>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue