aboutsummaryrefslogtreecommitdiffstats
path: root/ecomp-sdk-app/src/main/webapp/WEB-INF/jsp/login_external.jsp
blob: b4e3c0932886c44fec8a70f5e537c559d9700ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<%--
  ================================================================================
  eCOMP Portal SDK
  ================================================================================
  Copyright (C) 2017 AT&T Intellectual Property
  ================================================================================
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
  
       http://www.apache.org/licenses/LICENSE-2.0
  
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  ================================================================================
  --%>
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%>
<%@ taglib prefix="c"      uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt"    uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ page import="org.openecomp.portalsdk.core.util.SystemProperties" %>
<c:set var="title" value="Login" />
<c:set var="isMobileEnabled"
	value="<%=(SystemProperties.getProperty(SystemProperties.MOBILE_ENABLE)!= null && SystemProperties.getProperty(SystemProperties.MOBILE_ENABLE).trim().equals(\"true\"))%>" />

<!DOCTYPE html>
<html ng-app="abs">
	<head>

	    <title>
	      Login
        </title>
		<meta charset="utf-8">
		<meta http-equiv="X-UA-Compatible" content="IE=edge">
		<meta name="viewport" content="width=device-width, initial-scale=1"> 
	<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
		<link rel="stylesheet" type="text/css" href="app/fusion/external/ebz/fn-ebz.css" >
        <link rel="stylesheet" type="text/css" href="static/fusion/css/jquery-ui.css">
		<script src="static/js/jquery-1.10.2.js" type="text/javascript"></script>
		<script src= "app/fusion/external/ebz/angular_js/angular.js"></script> 
		<script src="app/fusion/external/ebz/angular_js/angular-route.min.js"></script>
		<script src= "app/fusion/external/ebz/angular_js/angular-sanitize.js"></script>
		<script src= "app/fusion/external/ebz/angular_js/angular-cookies.js"></script>
		<script src= "app/fusion/external/ebz/sandbox/att-abs-tpls.js" type="text/javascript"></script>
		<script src="static/fusion/js/att_angular_gridster/ui-gridster-tpls.js"></script>
		<script src="static/fusion/js/att_angular_gridster/angular-gridster.js"></script>	
		<script src= "app/fusion/external/ebz/angular_js/checklist-model.js"></script>
		<script src= "app/fusion/external/ebz/angular_js/app.js"></script>
		<script src= "app/fusion/external/ebz/angular_js/gestures.js"></script>
		<script src="static/js/modalService.js"></script>
		<script src="app/fusion/external/angular-ui/ui-bootstrap-tpls-1.1.2.min.js"></script>
	
		<style>
		.terms {
			font-family: Verdana,Arial,Helvetica, sans-serif;
			font-size: 9px;
		}
		
		</style>
	</head>
	<body style="padding-top: 15px;">
	<div ng-controller="externalLoginController">
		<div class="centered style="-webkit-transform: translateZ(0);background:white, z-index:0;">
			<div align="center" id="errorInfo" style="display:none;float:left;font-size:12px;margin-left:5px"><span style="color:red">Invaild username or password, Please try again</span></div>
			<br/>
			<div align="center" style="margin-left:auto;margin-right:auto;width:40%;padding:6px;opacity:0.7;background-color:white">
          		<img src="static/fusion/images/ecomp_trans.png"/>
				<h2> ECOMP Portal </h2>
				<label>
					&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<label class="form-field__label">Login ID:</label>
				</label>
				<input  type="text" class="fn-ebz-text" ng-model="loginId" style="width: 140px;height:25px;border-radius:7px;font-size:18px;padding-left:5px;"
					maxlength="30" />
				<br/>
				<br/>
				<label >&nbsp;Password:</label>
				<input type="password" class="span3" ng-model="password" style="width: 140px;height:25px;border-radius:7px;font-size:18px;padding-left:5px;"
					maxlength="30" onkeydown="if (event.keyCode == 13) document.getElementById('loginBtn').click()"/> 
				<br />
				<br />
				&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
				<input id="loginBtn" type="image" ng-click="loginExternal();" src="static/fusion/images/login_button.gif" alt="Login" />
				<br>
			</div>
		</div>
		<br/><br/><br/><br/><br/><br/><br/>
		<div id="footer">
		</div>
    </div>
    </body>
<script>
app.controller("externalLoginController", function ($scope) { 
	// Table Data
	
	$scope.viewPerPage = 200;
	$scope.currentPage = 2;
	$scope.totalPage;
	$scope.searchCategory = "";
	$scope.searchString = "";
	$scope.loginId="";
	$scope.password="";
	$scope.loginError=true;
	$scope.viewPerPage = 200;
	$scope.currentPage = 2;
	$scope.totalPage;
	$scope.searchCategory = "";
	$scope.searchString = "";
	$scope.loginId="";
	$scope.password="";
	
	
	$scope.loginExternal = function() {
		
		$.ajax({
	            url: "login_external/login?"+"loginId="+$scope.loginId+"&password="+$scope.password,
                type : "POST",
                success:function (response){
                  if(response=="success"){
                    window.location.href = 'welcome.htm';
                  }else{
                	$("#errorInfo").show();
                  }
                },
                error:function( jqXHR, status,error ){
                	$("#errorInfo").show();
                }
                
        });

    };
	
	
	/**
	$scope.loginExternal = function() {

        
		  var redirectUrl = "login_external/login";
          var form = $('<form action="' + redirectUrl + '" method="post">' +
                  '<input type="hidden" name="loginId" value='+$scope.loginId+' />' +
                  '<input type="hidden" name="password" value='+$scope.password+' />' +
                  '</form>');
                  
                  $('body').append(form);
                  $(form).submit();
         

    };
    */
	
});
</script>
</html>