-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (82 loc) · 4.3 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
<!DOCTYPE html>
<html>
<head>
<title> GGSIPU </title>
<link rel="stylesheet" type="text/css" href="./app/styles/main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<scipt src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"></scipt>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="node_modules/angularjs-captcha/dist/angularjs-captcha.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.5.0/ui-bootstrap-tpls.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://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js"></script>
<script src="./app/app.js"></script>
<script src="./app/controllers/Signup.js"></script>
<!-- <script src="./app/controllers/verify.js"></script> -->
<script src="./app/controllers/dashboard.js"></script>
<script src="./app/controllers/userFeedback.js"></script>
<script src="./app/services/userService.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/formApp/professional/professionalCtrl.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">
</head>
<body ng-app="faculty">
<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 Feedback System</span>
</div>
</nav>
</header>
<!-- TODO: Add view class before deployment -->
<div ng-view=""></div>
</main>
<footer class="page-footer declaration">
<div class="footer-copyright">
<div class="container center">
<p class="footer-disclaimer center">
The OFFS 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>
<script type="text/javascript">
$(window).on("load",function(){
$('.progress').css('display','none');
$('.declaration').css('display','block');
});
function myFunction() {
document.body.scrollTop = document.documentElement.scrollTop = 0;
}
</script>
</html>