14 lines
658 B
HTML
14 lines
658 B
HTML
<div class="container p-lg-0 pb-0" style="max-width: 100%; margin-top: 7px" *ngIf="storageService.getValue('hideWarning') !== 'hidden'">
|
|
<div class="alert alert-danger mb-0 text-center">
|
|
<div class="message-container">
|
|
<span i18n="warning-testnet">This is a test network. Coins have no value.</span>
|
|
@if (stateService.network === 'testnet') {
|
|
<span i18n="testnet3-deprecated">Testnet3 is deprecated, and will soon be replaced by <a href="/testnet4">Testnet4</a></span>
|
|
}
|
|
</div>
|
|
<button type="button" class="close" (click)="dismissWarning()">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
</div>
|