-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (94 loc) · 5.13 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<!-- The X-Frame-Options is used to prevent the site from clickjacking attacks. It defines whether or not a browser should be allowed to render a page in a <frame>, <iframe>, <embed> or <object> -->
<!-- deny: This directive stops the site from being rendered in <frame> i.e. site can’t be embedded into other sites. -->
<!-- This is done in the settings provided by the web server software or with a server-side language. -->
<!-- <meta http-equiv="X-Frame-Options" content="deny"> -->
<title>NAAC Portal | GGSIPU</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.1/js/materialize.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.4/angular-resource.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.4/angular-route.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ngStorage/0.3.10/ngStorage.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.4/angular-animate.js"></script>
<script src="https://rawgit.com/gdi2290/angular-md5/master/angular-md5.js"></script>
<script src="./app/app.js"></script>
<script src="./app/controllers/index.js"></script>
<script src="./app/controllers/main.js"></script>
<script src="./app/controllers/login.js"></script>
<script src="./app/controllers/selection.js"></script>
<script src="./app/controllers/forgot.js"></script>
<script src="./app/controllers/dashboard.js"></script>
<script src="./app/controllers/approve.js"></script>
<script src="./app/controllers/formService.js"></script>
<script src="./app/config.js"></script>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="./app/styles/dashboard.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.1/css/materialize.min.css">
<link rel="stylesheet" type="text/css" href="./style.css">
<link href="https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src='https://www.google.com/recaptcha/api.js'></script>
<script src="https://cdn.rawgit.com/CodeDistillery/angular-no-captcha/master/src/angular-no-captcha.js" type="text/javascript"></script>
<!-- This script prevents user from going backward. -->
<script type="text/javascript">
window.history.forward();
function noBack() {
window.history.forward();
}
</script>
</head>
<!-- The persisted property returns a Boolean value that indicates if the webpage is loaded directly from the server, or if the page is cached -->
<!-- event.persisted will give True if page is cached from the browser -->
<body ng-app="employee" onload="noBack()"; onpageshow="if (event.persisted) noBack();" onunload="">
<!-- This is preloader from materialize.css -->
<div class="progress">
<div class="indeterminate"></div>
</div>
<main class="declaration">
<header>
<nav>
<div class="nav-wrapper">
<img class="left logo-img" height="100" style="position: relative !important;z-index: 10;" src="./app/resources/images/logomain.png" >
<span href="/" class="brand-logo center main-title">GURU GOBIND SINGH INDRAPRASTHA UNIVERSITY</span>
</div>
</nav>
<nav>
<div class="nav-wrapper sub-nav">
<span href="#" class="brand-logo center sub-title">Faculty Data Acquisition System</span>
</div>
</nav>
</header>
<div ng-view="" ></div>
</main>
<footer class="page-footer declaration">
<div class="footer-copyright">
<div class="container center">
<p class="footer-disclaimer center">
The NAAC Portal, Designed and Developed
by the Software Development Cell, University School of Information, Communication & Technology (USICT).
Suggestions/Discrepancies (if any) mail at :- [email protected]</p>
</div>
</div>
</footer>
</body>
<!-- This script is for materialize items -->
<!-- After page has loaded in the browser. Change .progress display to none and .declaration display to block -->
<script type="text/javascript">
$(window).on("load",function(){
$('.progress').css('display','none');
$('.declaration').css('display','block');
});
</script>
<style type="text/css">
.input-field select.picker__select--year, .input-field select.picker__select--month{
pointer-events: auto !important;
position: relative !important;
height : auto !important;
opacity : 1 !important;
}
</style>
</html>