mirror of
https://github.com/google/nomulus
synced 2026-07-28 02:52:45 +00:00
106 lines
3.5 KiB
HTML
106 lines
3.5 KiB
HTML
@if(whoisService.editing) {
|
|
<app-whois-edit></app-whois-edit>
|
|
} @else {
|
|
<div class="console-app__whois">
|
|
<div class="console-app__whois-controls">
|
|
<span>
|
|
General registrar information for your WHOIS record. This information is
|
|
always visible in WHOIS.
|
|
</span>
|
|
<div class="spacer"></div>
|
|
<button
|
|
mat-flat-button
|
|
color="primary"
|
|
aria-label="Edit WHOIS record"
|
|
(click)="whoisService.editing = true"
|
|
>
|
|
<mat-icon>edit</mat-icon>
|
|
Edit
|
|
</button>
|
|
</div>
|
|
|
|
<mat-card appearance="outlined">
|
|
<mat-card-content>
|
|
<mat-list role="list">
|
|
<mat-list-item role="listitem">
|
|
<h2>Personal Info</h2>
|
|
</mat-list-item>
|
|
<mat-divider></mat-divider>
|
|
<mat-list-item role="listitem">
|
|
<span class="console-app__list-key">Company name</span>
|
|
<span class="console-app__list-value">{{
|
|
registrarService.registrar()?.registrarName
|
|
}}</span>
|
|
</mat-list-item>
|
|
<mat-divider></mat-divider>
|
|
<mat-list-item role="listitem">
|
|
<span class="console-app__list-key">Referral email</span>
|
|
<span class="console-app__list-value">{{
|
|
registrarService.registrar()?.emailAddress
|
|
}}</span>
|
|
</mat-list-item>
|
|
<mat-divider></mat-divider>
|
|
<mat-list-item role="listitem">
|
|
<span class="console-app__list-key">Phone</span>
|
|
<span class="console-app__list-value">{{
|
|
registrarService.registrar()?.phoneNumber
|
|
}}</span>
|
|
</mat-list-item>
|
|
<mat-divider></mat-divider>
|
|
<mat-list-item role="listitem">
|
|
<span class="console-app__list-key">Fax</span>
|
|
<span class="console-app__list-value">{{
|
|
registrarService.registrar()?.faxNumber
|
|
}}</span>
|
|
</mat-list-item>
|
|
<mat-divider></mat-divider>
|
|
<mat-list-item role="listitem">
|
|
<span class="console-app__list-key">Address</span>
|
|
<span class="console-app__list-value">{{ formattedAddress() }}</span>
|
|
</mat-list-item>
|
|
</mat-list>
|
|
</mat-card-content>
|
|
</mat-card>
|
|
|
|
<mat-card appearance="outlined">
|
|
<mat-card-content>
|
|
<mat-list role="list">
|
|
<mat-list-item role="listitem">
|
|
<h2>Technical Info</h2>
|
|
</mat-list-item>
|
|
<mat-divider></mat-divider>
|
|
<mat-list-item role="listitem">
|
|
<span class="console-app__list-key">IANA Identifier</span>
|
|
<span class="console-app__list-value">{{
|
|
registrarService.registrar()?.ianaIdentifier
|
|
}}</span>
|
|
</mat-list-item>
|
|
<mat-divider></mat-divider>
|
|
<mat-list-item role="listitem">
|
|
<div>
|
|
<span class="console-app__list-key">ICANN Referral Email</span>
|
|
<span class="console-app__list-value">{{
|
|
registrarService.registrar()?.icannReferralEmail
|
|
}}</span>
|
|
</div>
|
|
</mat-list-item>
|
|
<mat-divider></mat-divider>
|
|
<mat-list-item role="listitem">
|
|
<span class="console-app__list-key">WHOIS server</span>
|
|
<span class="console-app__list-value">{{
|
|
registrarService.registrar()?.whoisServer
|
|
}}</span>
|
|
</mat-list-item>
|
|
<mat-divider></mat-divider>
|
|
<mat-list-item role="listitem">
|
|
<span class="console-app__list-key">Referral URL</span>
|
|
<span class="console-app__list-value">{{
|
|
registrarService.registrar()?.url
|
|
}}</span>
|
|
</mat-list-item>
|
|
</mat-list>
|
|
</mat-card-content>
|
|
</mat-card>
|
|
</div>
|
|
}
|