-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
116 lines (86 loc) · 4.8 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
107
108
109
110
111
112
113
114
115
116
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<title>Request for Quote</title>
<link href="styles.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=0.9">
<meta name="image" property="og:image" content="https://raw.githubusercontent.com/kunal-ai/Request-for-Quotation/main/Images/RFQ.jpg"/>
<meta property='og:title' content='Request for Quotations'/>
<meta property='og:image' content='//https://raw.githubusercontent.com/kunal-ai/Request-for-Quotation/main/Images/RFQ.jpg'/>
<meta property='og:description' content='This is a formal request for inviting vendors to submit rates for their products'/>
<meta property='og:url' content='//https://kunal-ai.github.io/Request-for-Quotation/'/>
</head>
<body>
<div class="d-flex flex-column flex-md-row align-items-center p-1 px-md-4 mb-3 bg-warning border-bottom box-shadow">
<h2 class="display-6 my-2 mr-md-auto text-white">Request for Quote</h2>
<a class="btn btn-outline-secondary" href="https://github.com/kunal-ai">@Kunal Verma</a>
</div>
<div class="display-4 pricing-header py-0 pt-md-3 pb-md-4 mx-auto text-center">
<h1 class="display-4 pt-md-4">Request for Quote</h1>
<p class="lead">This is a formal request for inviting vendors to submit rates for their products</p>
</div>
<div class="container">
<div class="card-deck md-3 text-center">
<div class="list md-3">
<li class="list-group-item d-flex justify-content-between lh-condensed">
<div>
<span><input type="text" class="form-control" placeholder="RFQ Number" required></span>
</div>
</li>
<li class="list-group-item d-flex justify-content-between lh-condensed">
<div>
<span><input type="text" class="form-control" placeholder="RFQ Date" required></span>
</div>
</li>
<li class="list-group-item d-flex justify-content-between lh-condensed">
<div>
<span><input type="text" class="form-control" placeholder="Item Code" required></span>
</div>
</li>
<li class="list-group-item d-flex justify-content-between lh-condensed">
<div>
<span><input type="text" class="form-control" placeholder="Quantity required"></span>
</div>
</li>
<li class="list-group-item d-flex justify-content-between lh-condensed">
<div>
<span><input type="text" class="form-control" placeholder="Date of Supply"></span>
</div>
</li>
<li class="list-group-item d-flex justify-content-between lh-condensed">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckChecked" checked>
<label class="form-check-label" for="flexCheckChecked">
Buyer Approval
</label>
</div>
</li>
</div>
<div class="card md-6 box-shadow">
<div class="card-header">
<h4 class="d-flex justify-content-between align-items-center mb-3">
<span id="dept"><input type="text" class="form-control" placeholder="Vendor Name" required></span>
</h4>
</div>
<div class="card-body">
<h4 class="d-flex justify-content-between align-items-center mb-3">
<span id="dept"><input type="text" class="form-control" placeholder="Item Description" required></span>
</h4><h4 class="d-flex justify-content-between align-items-center mb-3">
<span id="dept"><input type="text" class="form-control" placeholder="Specifications" required></span>
</h4><h4 class="d-flex justify-content-between align-items-center mb-3">
<span id="dept"><input type="text" class="form-control" placeholder="Name of the Item" required></span>
</h4><h4 class="d-flex justify-content-between align-items-center mb-3">
<span id="dept"><input type="text" class="form-control" placeholder="Drawing Number" required></span>
</h4><h4 class="d-flex justify-content-between align-items-center mb-3">
<span id="dept"><input type="text" class="form-control" placeholder="Location Required At" required></span>
</h4>
<input type="text" id="rem" class="form-control" placeholder="Remarks">
</div>
</div>
</div>
</div>
</body>
<script src="index.js" charset="utf-8"></script>
</html>