-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathforget.php
85 lines (69 loc) · 3.76 KB
/
forget.php
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
<!DOCTYPE html>
<!--
Name: National Institute of Technology, Silchar. Management Information System | Login Page
AUTHOR
Design and code by: Harsh Vardhan Ladha & Yogesh Chauhan
CREDITS
Ripon Patgiri
SUPPORT
-->
<html>
<head>
<link rel="icon" href="images/nits.png">
<link rel="shortcut icon" href="images/nits.png" />
<title>MIS | NIT Silchar</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--Login CSS -->
<link href="css/login.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<!-- Google Recaptcha api -->
<script src='https://www.google.com/recaptcha/api.js'></script>
</head>
<body>
<!--Google Fonts-->
<link href='http://fonts.googleapis.com/css?family=Balthazar&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<!--Font Awesome-->
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<div class="mis login-form">
<div class="col-sm-6 col-md-5 col-lg-4 col-sm-offset-6 text-center login-popup-wrap">
<div class="login-popup">
<div id="logo"> </div>
<h1 class="title"><strong>Management Information System</strong></h1>
<ul>
<li>Write an application regarding the password issue to Head CC, NIT Silchar. <a href="http://lms.nits.ac.in/moodle/app/app.pdf" target="_blank">Click Here</a> to download application format.</li>
<li>Get it signed by, One of your branch Faculty "and" HOD.</li>
<li>Submit the application to Head CC, NIT Silchar.</li>
</ul>
<a href="login.php"><div class="btn btn-danger">Go Back!</div></a>
</div>
<div class="footer">
<b>© 2015</b> <a target="_blank" href="http://www.nits.ac.in">National Institute of Technology, Silchar</a><br/>Proudly developed by <a href="#"><i>Computer Science & Engineering</i></a>
<br/><a target="_blank" href="http://www.harshladha.com"> <b>Harsh Vardhan Ladha</a> & <a target="_blank" href="https://in.linkedin.com/in/yogeshchauhan1">Yogesh Chauhan</b></a><br/>Under the guidance of <a href="#"><i><b>Ripon Patgiri</b></i></a>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script>
$('[rel=tooltip]').tooltip();
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-58094042-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>