-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha-rfq.php
More file actions
227 lines (159 loc) · 4.48 KB
/
Copy patha-rfq.php
File metadata and controls
227 lines (159 loc) · 4.48 KB
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<?php include "a-session.php";
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title>RFQ</title>
<?php require_once "cli-linkstyle.php";?>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
margin-top:2%;
margin-bottom:2%;
outline:2px solid black;
}
th[colspan="6"] {
text-align: center;
}
th[rowspan="2"]{
text-align:center;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
</style>
<body style="background:whitesmoke;">
<!--Side bar-->
<?php
require_once "a-sidebar.php";
?>
<section class="home-section">
<div class="container-fluid" style="background-color:whitesmoke;">
<div class="card-shadow">
<!--Card header-->
<!-- first card body-->
<div class="card-body" style="border-radius:5px;border:1px solid #ededed;margin-top:5%;margin-left:5%;margin-right:5%;">
<br><br><br>
<table>
<tr>
<th colspan="3" style="text-align:center;">
Southern Leyte State University
</th>
<th colspan="4" style="text-align:center;">
REQUEST FOR QUOTATION FORM & NOTICE<br>
GOODS
</th>
</tr>
<tr>
<td colspan="2">
Office / Campus:
</td>
<td colspan="5">
Scholarship/HINUNGAN CAMPUS
</td>
</tr>
<tr>
<td colspan="2">Address/Contact Details:</td>
<td colspan="5">Brgy Ambacon, Hinunangan, Southern Leyte</td>
</tr>
<tr>
<td colspan="7"><span style="color:white;">asdfsdf</span></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td>Purchase Request No:</td>
<td></td>
<td style="border-bottom:2px solid black;"></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td>Date:</td>
<td></td>
<td style="border-bottom:2px solid black;"></td>
</tr>
<tr>
<td>GENTLEMEN:</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="7"><span style="color:white;">asdfsdf</span></td>
</tr>
<tr>
<td colspan="7"><i>May we request for quotation on materials enumarated hereunder. If you are interested and in a position to furnsih the<br>
same, we shall be glad to have your best prices.</i></td>
</tr>
<tr>
<td colspan="7"><i>Delivery within ________________ working days upon receipt of approved Purchase Order (PO)</i></td>
</tr>
<tr>
<td colspan="7"><span style="color:white;">asdfsdf</span></td>
</tr>
<tr style="border-top:2px solid black;border-bottom:2px solid black;">
<th>Item #</th>
<th>QTY.</th>
<th>UNIT</th>
<th>ITEM / DESCRIPTION</th>
<th>APPROVED BUDGET</th>
<th>UNIT COST</th>
<th>TOTAL COST</th>
</tr>
<tr>
<!-- For while loop array-->
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td style="text-align:right;font-weight:bold;">TOTAL</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Delivery Term</td>
<td colspan="6"></td>
</tr>
<tr>
<td>Payment Term</td>
<td></td>
<td colspan="2"><i>If payment for deposit, please provide bank details:</i></td>
<td></td>
</tr>
<tr>
<td colspan="7" style="color:white;">asdfasdf</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- script for tabs-->
<script src="assets/js/script.js"></script>
</body>
</html>