Info about automatic deletion of offline nodes.

This commit is contained in:
baldo 2016-07-29 22:22:51 +02:00
parent be9d0a3aa4
commit cacc3faeb5
3 changed files with 18 additions and 1 deletions

View file

@ -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();
};

View file

@ -3,6 +3,10 @@ f-node-saved {
text-align: center;
}
.actions {
margin-top: 30px;
}
.token-hint {
font: {
weight: bold;

View file

@ -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>