-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecurity.irpt
77 lines (75 loc) · 1.88 KB
/
security.irpt
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
<!DOCTYPE html >
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>CTM - Access Denied</title>
<style>
body{
background-image: url("Common/img/logo.png");
background-size: 180px;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right 40px top 30px;
font-family: Arial;
}
#app_header {
padding: 10px;
padding-left: 40px;
padding-top: 15px;
padding-bottom: 0px;
height:80px;
width:400px;
text-align: center;
}
#app_title {
width:400px;
text-align: center;
font-family: "Arial Black",Arial,Helvetica,sans-serif;
font-size:32px;
color: #007dc0;
margin-bottom; 20px;
}
#app_menu {
width:400px;
text-align: center;
font-family: Arial,Helvetica,sans-serif;
}
#page_title {
width:400px;
text-align: center;
font-family: "Arial Black",Arial,Helvetica,sans-serif;
font-size:28px;
color: #cfcfcf;
}
#mesm_content {
padding: 30px;
padding-top: 40px;
}
#__button0, #__button1, #__button2 {
margin-top:10px;
margin-left:5px;
margin-right:5px;
}
#MatrixT {
margin:10px auto;
}
</style>
<script type="text/javascript">
function update_scr() {
document.getElementById("app_title").innerHTML = document.getElementById("user_name").value;
}
</script>
</head>
<body onload="update_scr()">
<input id="user_roles" type="hidden" value="{IllumLoginRoles}" style="display:block;width:800px;" readonly />
<input id="user_plant" type="hidden" value="{PLANT}" style="display:block;width:800px;" readonly />
<input id="user_name" type="hidden" value="{IllumLoginName}" style="display: block;" readonly />
<div id="app_header" >
<div id="app_title">--</div>
<div id="app_menu">Please update your application role!</div>
<div id="page_title">ACCESS DENIED</div>
</div>
<div id="mesm_content" ></div>
</body>
</html>