Info about automatic deletion of offline nodes.
This commit is contained in:
parent
be9d0a3aa4
commit
cacc3faeb5
|
@ -1,8 +1,10 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('ffffng')
|
||||
.directive('fNodeSaved', function () {
|
||||
.directive('fNodeSaved', function (config) {
|
||||
var ctrl = function ($scope, Navigator) {
|
||||
$scope.config = config;
|
||||
|
||||
$scope.goHome = function () {
|
||||
Navigator.home();
|
||||
};
|
||||
|
|
|
@ -3,6 +3,10 @@ f-node-saved {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.actions {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.token-hint {
|
||||
font: {
|
||||
weight: bold;
|
||||
|
|
|
@ -11,6 +11,17 @@
|
|||
</span>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<strong>Hinweis:</strong>
|
||||
Sollte Dein Knoten länger als drei Monate offline sein, so wird dieser nach einer gewissen Zeit
|
||||
automatisch gelöscht. Du kannst Deinen Knoten selbstverständlich jederzeit neu anmelden.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Bei Fragen wende Dich gerne an
|
||||
<a href="mailto:{{ config.community.contactEmail }}">{{ config.community.contactEmail }}</a>.
|
||||
</p>
|
||||
|
||||
<div class="actions">
|
||||
<button class="back-button" ng-click="goHome()"><i class="fa fa-reply"></i> Zurück zum Anfang</button>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue