Initial commit for NBI
Change-Id: I5cd0448666a8241fd92e861afd330f5e94be379b
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/osm_nbi/html_public/OSM-logo.png b/osm_nbi/html_public/OSM-logo.png
new file mode 100644
index 0000000..7de447c
--- /dev/null
+++ b/osm_nbi/html_public/OSM-logo.png
Binary files differ
diff --git a/osm_nbi/html_public/delete.png b/osm_nbi/html_public/delete.png
new file mode 100644
index 0000000..d8fc8e9
--- /dev/null
+++ b/osm_nbi/html_public/delete.png
Binary files differ
diff --git a/osm_nbi/html_public/login.js b/osm_nbi/html_public/login.js
new file mode 100755
index 0000000..3a78a8e
--- /dev/null
+++ b/osm_nbi/html_public/login.js
@@ -0,0 +1,17 @@
+ var login_form = document.getElementById('login_form');
+ var f_user = document.getElementById('f_user');
+ var f_pass = document.getElementById('f_pass');
+ f_user.onkeydown = function(e) {
+ if (e.keyCode == 13) {
+ f_pass.focus();
+ return false;
+ }
+ }
+ f_pass.onkeydown = function(e) {
+ if (e.keyCode == 13) {
+ login_form.submit();
+ return false;
+ }
+ }
+ f_user.focus();
+
diff --git a/osm_nbi/html_public/style.css b/osm_nbi/html_public/style.css
new file mode 100644
index 0000000..3a96347
--- /dev/null
+++ b/osm_nbi/html_public/style.css
@@ -0,0 +1,25 @@
+
+#osm_header{
+ display: block;
+ position: relative;
+ top: 0px;
+ left: 160px;
+ margin-bottom: -60px;
+ width: 140px;
+ padding-left: 17px;
+ }
+#osm_topmenu {
+ background: none;
+ position: relative;
+ top: 0px;
+ left: 10px;
+ margin-right: 10px;
+}
+#osm_error_message {
+ padding: 5px;
+ margin: 2em;
+ width: 200em;
+ color: red;
+ font-weight: bold;
+}
+