-
Notifications
You must be signed in to change notification settings - Fork 16
/
add-shipment.php
189 lines (115 loc) · 3.12 KB
/
add-shipment.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?php
session_start();
require_once('database.php');
require_once('library.php');
isUser();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Admin</title>
<link href="css/mystyle.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<style type="text/css">
.style1 {color: #FF0000}
.style3 {font-family: verdana, tohama, arial}
</style>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" align="center" width="900">
<tbody><tr>
<td width="900">
<?php include("header.php"); ?>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF" style="height: 61px">
<style type="text/css">
.ds_box {
background-color: #FFF;
border: 1px solid #000;
position: absolute;
z-index: 32767;
}
.ds_tbl {
background-color: #FFF;
}
.ds_head {
background-color: #333;
color: #FFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
text-align: center;
letter-spacing: 2px;
}
.ds_subhead {
background-color: #CCC;
color: #000;
font-size: 12px;
font-weight: bold;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
width: 32px;
}
.ds_cell {
background-color: #EEE;
color: #000;
font-size: 13px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
padding: 5px;
cursor: pointer;
}
.ds_cell:hover {
background-color: #F3F3F3;
} /* This hover code won't work for IE */
</style>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
<table class="ds_box" id="ds_conclass" style="display: none;" cellpadding="0" cellspacing="0">
<tbody><tr>
<td id="ds_calclass"> </td>
</tr>
</tbody></table>
<br>
<table border="0" align="center" width="98%">
<tbody><tr>
<td class="Partext1" bgcolor="F9F5F5" align="center" style="height: 21px"><strong>ADD SHIPMENT</strong></td>
</tr>
</tbody></table>
<br>
<form action="process.php?action=add-shipment" method="post" name="frmShipment" id="frmShipment">
<table bgcolor="#EEEEEE" cellpadding="2" cellspacing="2" align="center" width="75%">
<tbody><tr>
<td class="Partext1" bgcolor="#FFFFFF" align="center" style="height:52px" >
ENTER SHIPMENT TYPE :<input type="text" name="addship" id="addship"></td>
<td class="Partext1" bgcolor="#FFFFFF" style="height: 25px">
</td>
</tr>
<tr>
<td colspan="2" class="Partext1" bgcolor="#FFFFFF" style="height: 32px">
<input name="submit" value="Submit" type="submit" ></td>
</tr>
</tbody>
</table>
</form>
<br>
</td>
</tr>
<tr>
<td><table border="0" cellpadding="0" cellspacing="0" align="center" width="900">
<tbody>
</tbody></table>
</td>
</tr>
</tbody></table>
</body></html>