This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
adlin/token-validator/htdocs/views/domains.html

71 lines
1.7 KiB
HTML

<h2>
Noms de domaine
</h2>
<h3>Association simple</h3>
<table class="table table-striped table-hover">
<thead>
<tr>
<th>Domaine</th>
<th>TTL</th>
<th>Type</th>
<th>Entrée</th>
</tr>
</thead>
<tbody style="font-family: monospace">
<tr ng-repeat="ad in adomains">
<td>{{ ad.domain }}</td>
<td>{{ ad.ttl }}</td>
<td>{{ ad.rr }}</td>
<td><span ng-repeat="val in ad.values">{{ val }} </span></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="4">
<button class="btn btn-primary" ng-click="newAssociationD()">
<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true" ng-show="pleaseWaitNewAssociation"></span>
Demander un nouveau nom de domaine
</button>
</td>
</tr>
</tfoot>
</table>
<hr class="my-4">
<h3>Délégation</h3>
<table class="table table-striped table-hover">
<thead>
<tr>
<th>Domaine</th>
<th>NS</th>
<th>GLUE</th>
<th>DNSSEC</th>
</tr>
</thead>
<tbody style="font-family: monospace">
<tr>
<td>{{ isLogged.login }}.srs2020.p0m.fr</td>
<td>ns.{{ isLogged.login }}.srs2020.p0m.fr</td>
<td>2a01:e0a:2b:2252:{{ isLogged.id.toString(16) }}::1</td>
<td>
<span class="badge badge-pill badge-success" ng-show="false">Activé</span>
<span class="badge badge-pill badge-danger">Non configuré</span>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="4">
<button class="btn btn-primary" ng-click="newDelegation()">
<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true" ng-show="pleaseWaitNewDelegation"></span>
Demander un nouveau nom de domaine
</button>
</td>
</tr>
</tfoot>
</table>