token-validator: add some more help
This commit is contained in:
parent
b73cab920a
commit
2f13023128
@ -31,8 +31,8 @@
|
||||
<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true" ng-show="pleaseWaitNewAssociation"></span>
|
||||
Demander une nouvelle association
|
||||
</button>
|
||||
<button class="btn ml-2" ng-class="{'btn-secondary': !adomains || !adomains.length, 'btn-success': adomains && adomains.length}" ng-disabled="!adomains || !adomains.length" ng-click="useMyAssociationD()">
|
||||
Utiliser mon domaine
|
||||
<button class="btn ml-2" ng-class="{'btn-secondary': !adomains || !adomains.length, 'btn-success': adomains && adomains.length}" ng-disabled="!adomains || !adomains.length" title="Si tu disposes de ton propre domaine chez un véritable hébergeur, tu peux dédier un sous-domaine pour l'utiliser à la place du domaine qui t'es proposé par Maatma." ng-click="useMyAssociationD()">
|
||||
Utiliser mon propre domaine
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
@ -63,9 +63,9 @@
|
||||
<div ng-repeat="domain in ddomains">
|
||||
<h4 class="text-muted">
|
||||
{{ domain }}
|
||||
<button class="btn btn-sm btn-info ml-2" ng-if="$first" ng-click="useMyDelegationD()">
|
||||
<button class="btn btn-sm btn-info ml-2" ng-if="$first" title="Si tu disposes de ton propre domaine chez un véritable hébergeur, tu peux dédier un sous-domaine pour l'utiliser à la place du domaine qui t'es proposé par Maatma." ng-click="useMyDelegationD()">
|
||||
<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true" ng-show="pleaseWaitNewDelegation"></span>
|
||||
Utiliser mon domaine
|
||||
Utiliser mon propre domaine
|
||||
</button>
|
||||
</h4>
|
||||
|
||||
@ -169,7 +169,7 @@
|
||||
</thead>
|
||||
<tbody style="font-family: monospace" ng-if="domainDS">
|
||||
<tr ng-repeat="rr in domainDS">
|
||||
<td ng-repeat="val in rr.values">{{ val }}</td>
|
||||
<td ng-repeat="val in rr.values track by $index">{{ val }}</td>
|
||||
<td>
|
||||
<button class="btn btn-danger" ng-click="deleteRR(domain, rr)">
|
||||
<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true" ng-show="rr.pleaseWaitDSdel"></span>
|
||||
@ -324,7 +324,7 @@ ns.{{ student.delegated_domain }} 300 IN AAAA [your NS ip]
|
||||
</div>
|
||||
</form>
|
||||
<p>
|
||||
Ensuite, configure ta zone DNS, pour réaliser la délégation. L'interface
|
||||
Ensuite, configure ta zone DNS, pour réaliser la délégation. L'interface de maatma ne te sera plus utile, car pour réaliser la délégation, tu dois passer par l'interface du bureau d'enregistrement de ton domaine.
|
||||
</p>
|
||||
<pre>
|
||||
;; Delegation {{ assoc.ns }} to the given name server
|
||||
@ -349,6 +349,7 @@ ns.{{ assoc.ns }} 300 IN AAAA [your NS ip]
|
||||
<h5 class="modal-title" ng-if="nsrr.rr == 'NS'">Modifier la liste des serveurs de noms de la zone</h5>
|
||||
<h5 class="modal-title" ng-if="nsrr.rr == 'AAAA'">Modifier les enregistrements GLUE du domaine</h5>
|
||||
<h5 class="modal-title" ng-if="nsrr.rr == 'DS'">Modifier les clefs DNSSEC de la zone parente</h5>
|
||||
<h5 class="modal-title" ng-if="nsrr.rr == 'DNSKEY'">Ajout d'un enregistrement DS (à partir d'un enregistrement DNSKEY)</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
@ -358,7 +359,7 @@ ns.{{ assoc.ns }} 300 IN AAAA [your NS ip]
|
||||
<div class="form-group row">
|
||||
<label class="col-sm-2 col-form-label">Domaine</label>
|
||||
<div class="col-sm-10">
|
||||
<input class="form-control-plaintext" ng-model="nsrr.domain" ng-if="nsrr.rr == 'NS' || nsrr.rr == 'DS'" readonly>
|
||||
<input class="form-control-plaintext" ng-model="nsrr.domain" ng-if="nsrr.rr == 'NS' || nsrr.rr == 'DS' || nsrr.rr == 'DNSKEY'" readonly>
|
||||
<input class="form-control" ng-model="nsrr.domain" ng-if="nsrr.rr == 'AAAA'">
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user