diff --git a/web-resource/configure.html b/web-resource/configure.html
index 3e33fd40..4ddb438d 100644
--- a/web-resource/configure.html
+++ b/web-resource/configure.html
@@ -45,8 +45,83 @@
-
-
+
+
Profile Information
+
+
+
+
+
Local Sensors
+
+ This is a local list of sensors connected to this node.
+
+
+
+ | Name |
+ Type |
+ Configuration |
+
+ {{#localSensor}}
+
+ | {{.name}} |
+ {{.type}} |
+ {{.config}} |
+
+ {{/localSensor}}
+
+
+
+
+
External Users
+
+ Add or remove users that you want to synchronized data with.
+
+
+
+ | Username |
+ Hostname |
+ Port |
+
+ {{#extUsers}}
+
+ | {{.username}} |
+ {{.host}} |
+ {{.port}} |
+
+ {{/extUsers}}
+
+
+
+
+
External Sensors
+
+ This is a read only list of synchronized sensors from external users.
+
+
+
+ | Name |
+ Type |
+ Configuration |
+
+ {{#localSensor}}
+
+ | {{.name}} |
+ {{.type}} |
+ {{.config}} |
+
+ {{/localSensor}}
+
+
diff --git a/web-resource/css/main.css b/web-resource/css/main.css
index 38d4177f..ed9bf766 100644
--- a/web-resource/css/main.css
+++ b/web-resource/css/main.css
@@ -103,3 +103,7 @@ body {
display: inline-block;
border-radius: 50%;
}
+
+.panel{
+ margin-bottom: 70px;
+}