aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/modal/instance-config-warning-modal.component.html
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-06-04 20:55:25 +0200
committerRigel Kent <sendmemail@rigelk.eu>2020-06-04 20:57:10 +0200
commit80c7779efeab644410dee2f21428322b1f0e3500 (patch)
tree7b7d84e6f3a5f30189f98d36eaa97eaa9b7ae557 /client/src/app/modal/instance-config-warning-modal.component.html
parent4282dafc826f5ca72598aa5446122eb6da3aed27 (diff)
downloadPeerTube-80c7779efeab644410dee2f21428322b1f0e3500.tar.gz
PeerTube-80c7779efeab644410dee2f21428322b1f0e3500.tar.zst
PeerTube-80c7779efeab644410dee2f21428322b1f0e3500.zip
fix mascot sizes, fix tick, delete extraneous .png icons
follows PR #2822
Diffstat (limited to 'client/src/app/modal/instance-config-warning-modal.component.html')
-rw-r--r--client/src/app/modal/instance-config-warning-modal.component.html12
1 files changed, 5 insertions, 7 deletions
diff --git a/client/src/app/modal/instance-config-warning-modal.component.html b/client/src/app/modal/instance-config-warning-modal.component.html
index 5a8290cda..5a8adf726 100644
--- a/client/src/app/modal/instance-config-warning-modal.component.html
+++ b/client/src/app/modal/instance-config-warning-modal.component.html
@@ -7,7 +7,7 @@
7 <div class="modal-body"> 7 <div class="modal-body">
8 <img class="mascot" src="/client/assets/images/mascot/oh.svg" alt="mascot" /> 8 <img class="mascot" src="/client/assets/images/mascot/oh.svg" alt="mascot" />
9 9
10 <p i18n>Hello dear administrator. You enabled user registration on your instance but you did not configure the following fields:</p> 10 <p i18n>You enabled user registration on your instance but did not configure the following fields:</p>
11 11
12 <ul> 12 <ul>
13 <li i18n *ngIf="about.instance.name.toLowerCase() === 'peertube'">Instance name</li> 13 <li i18n *ngIf="about.instance.name.toLowerCase() === 'peertube'">Instance name</li>
@@ -25,11 +25,6 @@
25 Please consider configuring these fields to help people to choose <strong>the appropriate instance</strong>. 25 Please consider configuring these fields to help people to choose <strong>the appropriate instance</strong>.
26 Without them, your instance may not be referenced on the <a target="_blank" rel="noopener noreferrer" href="https://joinpeertube.org">JoinPeerTube website</a>. 26 Without them, your instance may not be referenced on the <a target="_blank" rel="noopener noreferrer" href="https://joinpeertube.org">JoinPeerTube website</a>.
27 </p> 27 </p>
28
29 <div class="configure-instance">
30 <a i18n class="action-button action-button-configure" href="/admin/config/edit-custom" target="_blank" rel="noopener noreferrer">Configure these fields</a>
31 </div>
32
33 </div> 28 </div>
34 29
35 <div class="modal-footer inputs"> 30 <div class="modal-footer inputs">
@@ -37,13 +32,16 @@
37 inputName="stopDisplayModal" [(ngModel)]="stopDisplayModal" 32 inputName="stopDisplayModal" [(ngModel)]="stopDisplayModal"
38 i18n-labelText labelText="Don't show me this warning anymore" 33 i18n-labelText labelText="Don't show me this warning anymore"
39 > 34 >
40
41 </my-peertube-checkbox> 35 </my-peertube-checkbox>
42 36
43 <input 37 <input
44 type="button" role="button" i18n-value value="Close" class="action-button action-button-cancel" 38 type="button" role="button" i18n-value value="Close" class="action-button action-button-cancel"
45 (click)="hide()" (key.enter)="hide()" 39 (click)="hide()" (key.enter)="hide()"
46 > 40 >
41 <a i18n class="action-button action-button-configure" ngbAutofocus
42 href="/admin/config/edit-custom" target="_blank" rel="noopener noreferrer">
43 Configure
44 </a>
47 </div> 45 </div>
48 46
49</ng-template> 47</ng-template>