mirror of
https://github.com/google/nomulus
synced 2026-02-02 19:12:27 +00:00
This is a fairly simple page that solely exists to display the result from the action, and to link the user back to the domain list.
29 lines
837 B
HTML
29 lines
837 B
HTML
@if (isLoading) {
|
|
<div class="console-app__registry-lock-verify-spinner">
|
|
<mat-spinner />
|
|
</div>
|
|
} @else if (domainName) {
|
|
<h1 class="mat-headline-4">Success!</h1>
|
|
<div class="console-app__registry-lock-content">
|
|
<div class="console-app__registry-lock-subhead">
|
|
The domain {{ domainName }} has been successfully {{ action }}ed.
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<a
|
|
class="text-l"
|
|
routerLink="{{ DOMAIN_LIST_COMPONENT_PATH }}"
|
|
[queryParams]="{ registrarId: this.registrarService.registrarId() }"
|
|
>Return to the list of domains</a
|
|
>
|
|
</div>
|
|
} @else {
|
|
<h1 class="mat-headline-4">Failure</h1>
|
|
<div class="console-app__registry-lock-content">
|
|
<div class="console-app__registry-lock-subhead">
|
|
An error occurred: {{ errorMessage }}.<br /><br />Please double-check the
|
|
verification code and try again.
|
|
</div>
|
|
</div>
|
|
}
|