forked from vishaloshnif/stock-management-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·133 lines (95 loc) · 3.53 KB
/
index.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
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Welcome to Stock Management System !</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="login.css" />
<script type="text/javascript" src="login.js"></script>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #FFFFFF;
}
*{
padding: 0px;
margin: 0px;
}
.style2 {color: #000000}
-->
</style>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="top"><table width="960" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="960" border="0" cellpadding="0" cellspacing="0" bgcolor="#F5F5F5">
<tr>
<td height="90" align="left" valign="top"><img src="images/topbanner.jpg" width="960" height="82"></td>
</tr>
<tr>
<td height="800" align="left" valign="top">
<div align="center" style="margin-top:30px; ">
<div id="content">
<div class="constrainedContent" id="contentWrap">
<script type="text/javascript" src="FormSpring_files/user.js"></script>
<link rel="stylesheet" type="text/css" href="FormSpring_files/login.css">
<!--[if lte IE 6]>
<div class="warning">
<h2 style="margin:8px 0 24px 0;">You're using an old version of Internet Explorer</h2>
<p>To get the maximum functionality while using FormSpring,
please download the <a href="http://www.microsoft.com/windows/internet-explorer/">latest version of Internet Explorer</a>.
<br /><br />
If you're not able to upgrade Internet Explorer, we suggest you try a browser like <a href="http://getfirefox.com">FireFox</a>, <a href="http://www.google.com/chrome">Google Chrome</a> or <a href="http://apple.com/safari">Safari</a>.
</p>
</div>
<![endif]-->
<font color="#FF0000">
<?php
error_reporting (E_ALL ^ E_NOTICE);
echo $_GET['msg'];
?>
</font>
<form method="post" action="checklogin.php" id="loginForm">
<div id="loginContainer">
<div id="loginHeader">
<h1 style="color:#fff; font-size:16pt">Login</h1>
</div>
<table id="loginContent">
<tbody><tr>
<td class="tdLabel"><label for="email">UserName</label></td>
<td><input id="email" name="myusername" size="25" type="text"></td>
</tr>
<tr>
<td class="tdLabel"><label for="password">Password</label></td>
<td>
<input id="password" name="mypassword" size="25"
type="password"> </td>
</tr>
<tr>
<td> </td>
<td>
<input value="Login" id="submit" type="submit">
</td>
</tr>
</tbody></table>
</div>
</form>
</td>
</tr>
<tr>
<td height="30" align="center" bgcolor="#72C9F4" ><span class="style1"><a href="http://www.Oshnif.com" style="color:#FFF; font-weight:bolder">Developed by Oshnif Technologies Pvt .Ltd </a></span></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>