-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/ppg 40 vijay the manage groups functionality changes UI (#1262)
* Group related changes are done for manage my account page * normal users A/Cs are verified and fixed.
- Loading branch information
1 parent
094e197
commit bc26289
Showing
6 changed files
with
679 additions
and
580 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
97 changes: 49 additions & 48 deletions
97
src/app/pages/manage-user/verify-user-status/verify-user-status.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,60 @@ | ||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<div class="user-profile-container"> | ||
<div class="govuk-breadcrumbs"> | ||
<ol class="govuk-breadcrumbs__list"> | ||
<li class="govuk-breadcrumbs__list-item"> | ||
<a *ngIf="isOrgAdmin" class="govuk-breadcrumbs__link" routerLink="/home"> | ||
{{ 'ADMINISTRATOR_DASHBOARD' | translate }} | ||
<div class="govuk-grid-column-two-thirds"> | ||
<div class="user-profile-container"> | ||
<div class="govuk-breadcrumbs"> | ||
<ol class="govuk-breadcrumbs__list"> | ||
<li class="govuk-breadcrumbs__list-item"> | ||
<a *ngIf="isOrgAdmin" class="govuk-breadcrumbs__link" routerLink="/home"> | ||
{{ 'ADMINISTRATOR_DASHBOARD' | translate }} | ||
</a> | ||
<a *ngIf="!isOrgAdmin" class="govuk-breadcrumbs__link" routerLink="/home"> | ||
{{"PUBLIC_PROCUREMENT_GATEWAY_DASHBOARD" | translate}} | ||
{{"PUBLIC_PROCUREMENT_GATEWAY_DASHBOARD" | translate}} | ||
</a> | ||
</li> | ||
<li class="govuk-breadcrumbs__list-item" *ngIf="userStatus === 0"> | ||
<span class="govuk-breadcrumbs__link">Account already created</span> | ||
</li> | ||
<li class="govuk-breadcrumbs__list-item" *ngIf="userStatus === 1 || userStatus === 2"> | ||
<span class="govuk-breadcrumbs__link">User not created</span> | ||
</li> | ||
<li class="govuk-breadcrumbs__list-item" *ngIf="userStatus === 3"> | ||
<span class="govuk-breadcrumbs__link">Error</span> | ||
</li> | ||
</ol> | ||
</div> | ||
<div *ngIf="userStatus === 3" class="govuk-error-summary contact-form-error" aria-labelledby="error-summary-title" | ||
role="alert" tabindex="-1" id="error-summary" data-module="govuk-error-summary"> | ||
<h2 class="govuk-error-summary__title" id="error-summary-title"> | ||
{{ "ERROR_SUMMARY" | translate }} | ||
</h2> | ||
<div class="govuk-error-summary__body"> | ||
<ul class="govuk-list govuk-error-summary__list"> | ||
<li> | ||
<a href="javascript:;" onClick="return false;">Invalid Link</a> | ||
</li> | ||
<li class="govuk-breadcrumbs__list-item" *ngIf="userStatus === 0"> | ||
<span class="govuk-breadcrumbs__link">Account already created</span> | ||
</li> | ||
<li class="govuk-breadcrumbs__list-item" *ngIf="userStatus === 1 || userStatus === 2"> | ||
<span class="govuk-breadcrumbs__link">User not created</span> | ||
</li> | ||
<li class="govuk-breadcrumbs__list-item" *ngIf="userStatus === 3"> | ||
<span class="govuk-breadcrumbs__link">Error</span> | ||
</li> | ||
</ol> | ||
</ul> | ||
</div> | ||
<div *ngIf="userStatus === 3" class="govuk-error-summary contact-form-error" aria-labelledby="error-summary-title" | ||
role="alert" tabindex="-1" id="error-summary" data-module="govuk-error-summary"> | ||
<h2 class="govuk-error-summary__title" id="error-summary-title"> | ||
{{ "ERROR_SUMMARY" | translate }} | ||
</h2> | ||
<div class="govuk-error-summary__body"> | ||
<ul class="govuk-list govuk-error-summary__list"> | ||
<li> | ||
<a href="javascript:;" onClick="return false;">Invalid Link</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div *ngIf="userStatus === 0"> | ||
<h1 class="govuk-heading-xl">Account already created</h1> | ||
<div class="link_valid"> | ||
<p class="govuk-body-l">An account has already been set up for {{userInfo.email}}</p> | ||
</div> | ||
</div> | ||
<div *ngIf="userStatus === 0"> | ||
<h1 class="govuk-heading-xl">Account already created</h1> | ||
<div class="link_valid"> | ||
<p class="govuk-body-l">An account has already been set up for {{userInfo.email}}</p> | ||
</div> | ||
<div *ngIf="userStatus === 1"> | ||
<h1 class="govuk-heading-xl">User not created</h1> | ||
<div class="link_valid"> | ||
<p class="govuk-body-l">You don't have permission to action this request.</p> | ||
</div> | ||
</div> | ||
<div *ngIf="userStatus === 1"> | ||
<h1 class="govuk-heading-xl">User not created</h1> | ||
<div class="link_valid"> | ||
<p class="govuk-body-l">You do not have permission to action this request.</p> | ||
</div> | ||
<div *ngIf="userStatus === 2"> | ||
<h1 class="govuk-heading-xl">User not created</h1> | ||
<div class="link_valid"> | ||
<p class="govuk-body-l">The user creation request has expired. You can set this user up by <a class="navigation-text" routerLink="/manage-users/add-user/details">Adding a new user</a>. </p> | ||
</div> | ||
</div> | ||
<div *ngIf="userStatus === 2"> | ||
<h1 class="govuk-heading-xl">User not created</h1> | ||
<div class="link_valid"> | ||
<p class="govuk-body-l">The user creation request has expired. You can set this user up by <a | ||
class="navigation-text" routerLink="/manage-users/add-user/details">Adding a new user</a>. </p> | ||
</div> | ||
<a *ngIf="userStatus != 3" href="javascript:;" class="navigation-text" routerLink="/home">Return to dashboard</a> | ||
</div> | ||
<a *ngIf="userStatus != 3" href="javascript:;" class="navigation-text" routerLink="/home">Return to dashboard</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.