File tree Expand file tree Collapse file tree 5 files changed +55
-0
lines changed
java/com/ericsson/ei/frontend Expand file tree Collapse file tree 5 files changed +55
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,12 @@ public String testRules(Model model) {
57
57
return "testRules" ;
58
58
}
59
59
60
+ @ RequestMapping ("/eiInfo.html" )
61
+ public String eiInfo (Model model ) {
62
+
63
+ return "eiInfo" ;
64
+ }
65
+
60
66
@ RequestMapping ("/login.html" )
61
67
public String login (Model model ) {
62
68
Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ jQuery(document).ready(function() {
7
7
iframe . src = "http://localhost:8080/testRules.html" ;
8
8
}
9
9
10
+ document . getElementById ( "eiInfoBtn" ) . onclick = function ( ) {
11
+
12
+ var iframe = document . getElementById ( "mainFrame" ) ;
13
+ iframe . src = "http://localhost:8080/eiInfo.html" ;
14
+ }
15
+
16
+
10
17
function loadLoginPage ( ) {
11
18
var iframe = document . getElementById ( "mainFrame" ) ;
12
19
iframe . src = "http://localhost:8080/login.html" ;
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html xmlns:th ="http://www.thymeleaf.org ">
3
+ < mvc:resources mapping ="/resources/** " location ="/resources/ " />
4
+ < head >
5
+ < meta charset ="utf-8 "/>
6
+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge "/>
7
+ < meta name ="viewport " content ="width=device-width, initial-scale=1 "/>
8
+ < title > Eiffel Intelligence Subscription Handling</ title >
9
+
10
+ <!-- Style Sheets -->
11
+
12
+ < link href ="assets/bootstrap/css/bootstrap.min.css " rel ="stylesheet "/>
13
+
14
+ <!-- JavaScript imports -->
15
+
16
+ < script type ="text/javascript " src ="assets/jquery/jquery-3.2.1.min.js "> </ script >
17
+ < script type ="text/javascript " src ="assets/bootstrap/js/bootstrap.min.js "> </ script >
18
+ < script type ="text/javascript " src ="assets/bootstrap-datepicker/js/bootstrap-datepicker.min.js "> </ script >
19
+ < script type ="text/javascript " src ="assets/knockout/knockout-3.4.2.js "> </ script >
20
+ < script type ="text/javascript " src ="assets/knockout/knockout.mapping.js "> </ script >
21
+ < script type ="text/javascript " src ="assets/jquery-confirm/js/jquery-confirm.js "> </ script >
22
+ < script type ="text/javascript " src ="assets/jgrowl/jquery.jgrowl.min.js "> </ script >
23
+ < script type ="text/javascript " src ="assets/jquery-ui/jquery-ui.min.js "> </ script >
24
+
25
+ </ head >
26
+
27
+ < body >
28
+ < div class ="container pull-left ">
29
+ < br />
30
+ < br />
31
+ < div align ="center "> < label > Eiffel Intelligence Information</ label > </ div >
32
+ </ div >
33
+ </ body >
34
+ </ html >
Original file line number Diff line number Diff line change 39
39
< span class ="nav-link-text "> Test Rules</ span >
40
40
</ a >
41
41
</ li >
42
+ < li id ="eiInfoBtn " class ="nav-item " data-toggle ="tooltip " data-placement ="right " title ="Eiffel Intelligence Information ">
43
+ < a class ="nav-link " href ="# ">
44
+ < i class ="fa fa-fw fa-dashboard "> </ i >
45
+ < span class ="nav-link-text "> Eiffel Intelligence Info</ span >
46
+ </ a >
47
+ </ li >
42
48
< li class ="nav-item " data-toggle ="tooltip " data-placement ="right " title ="Account Handling ">
43
49
< a class ="nav-link nav-link-collapse collapsed " data-toggle ="collapse " href ="#collapseExamplePages " data-parent ="#exampleAccordion ">
44
50
< i class ="fa fa-fw fa-file "> </ i >
Original file line number Diff line number Diff line change 26
26
27
27
< body >
28
28
< div class ="container pull-left ">
29
+ < br />
30
+ < br />
29
31
< div align ="center "> < label > Test Rules Page</ label > </ div >
30
32
</ div >
31
33
</ body >
You can’t perform that action at this time.
0 commit comments