ffffng/admin/index.html

67 lines
1.3 KiB
HTML
Raw Normal View History

2016-06-04 14:58:11 +02:00
<!doctype html>
<html lang="en">
<head>
<title>Knotenverwaltung - Admin-Panel</title>
<link rel="stylesheet" href="css/ng-admin.min.css">
<style>
.task-enabled {
color: green;
}
.task-disabled {
color: lightcoral;
text-decoration: line-through;
}
2016-06-07 00:21:26 +02:00
2016-06-11 12:08:50 +02:00
.mails-pending {
color: green;
}
.mails-failed {
color: #eea236;
}
.mails-failed-max {
color: red;
}
2016-06-07 00:21:26 +02:00
.monitoring-active {
color: green;
}
.monitoring-confirmation-pending {
color: lightcoral;
}
.monitoring-disabled {
color: lightgrey;
}
.vpn-key-set, .coords-set {
color: green;
}
.vpn-key-unset, .coords-unset {
color: lightgrey;
2016-06-07 00:21:26 +02:00
}
</style>
2016-06-04 14:58:11 +02:00
</head>
<body ng-app="ffffngAdmin">
<div ui-view></div>
<script src="js/moment-with-locales.min.js"></script>
<script src="js/ng-admin.min.js"></script>
2016-06-11 12:08:50 +02:00
2016-06-07 00:21:26 +02:00
<script src="js/app.js"></script>
2016-06-11 12:08:50 +02:00
2016-06-07 00:21:26 +02:00
<script src="js/validation/constraints.js"></script>
2016-06-11 12:08:50 +02:00
<script src="js/views/mailActionButton.js"></script>
2016-06-07 00:21:26 +02:00
<script src="js/views/taskActionButton.js"></script>
2016-06-11 12:08:50 +02:00
2016-06-07 14:08:04 +02:00
<script src="js/main.js"></script>
<script src="/config.js"></script>
2016-06-04 14:58:11 +02:00
</body>
</html>