-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (58 loc) · 3.32 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>P2P To Do Checklist</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<meta property='og:title' content='P2P Checklist'/>
<meta name="image" property="og:image" content="https://raw.githubusercontent.com/kunal-ai/P2P-Checklist/main/Images/Github%20Todo.jpg">
<meta property='og:image' content='//https://raw.githubusercontent.com/kunal-ai/P2P-Checklist/main/Images/Github%20Todo.jpg'/>
<meta property='og:description' content='This is a P2P Checklist to ensure a smooth process is followed for Procurement'/>
<meta property='og:url' content='//https://github.com/kunal-ai/P2P-Checklist'/>
<meta name="author" content="Kunal Verma">
</head>
<body>
<div class="d-flex flex-column flex-md-row align-items-center p-1 px-md-5 mb-3 bg-warning border-bottom box-shadow fixed-top">
<h2 class="display-5 my-0 mr-md-auto text-white ">P2P Checklist</h2>
<nav class="my-2 my-md-0 mr-md-8 ">
<a class="btn btn-outline-secondary" href="https://github.com/kunal-ai">@Kunal Verma</a>
</nav>
</div>
<div class="container">
<div class="topic-header px-5 py-5 pt-md-5 pb-md-5 mx-auto text-center">
<h1 class="display-4 pt-4">P2P Checklist</h1>
<p class="lead">This is a Purchase to Payment checklist, a handy tool to ensure the procurement process is smoother</p>
</div>
<div class="container d-flex justify-content-center">
<div class="col-lg-8 order-md-6">
<div class="custom-control custom-checkbox box-l">
<input type="checkbox" class="custom-control-input custom-checkbox checkbox-lg" id="preq">
<label class="custom-control-label" for="preq">Process Purchase Requisition</label>
</div>
<div class="custom-control custom-checkbox box-l">
<input type="checkbox" class="custom-control-input" id="enquiry">
<label class="custom-control-label" for="enquiry">Float Enquiry / RFQ / RFP</label>
</div>
<div class="custom-control custom-checkbox box-l">
<input type="checkbox" class="custom-control-input" id="cs">
<label class="custom-control-label" for="cs">Prepare Comparative Statement</label>
</div>
<div class="custom-control custom-checkbox box-l">
<input type="checkbox" class="custom-control-input" id="po">
<label class="custom-control-label" for="po">Create Purchase Order</label>
</div>
<div class="custom-control custom-checkbox box-l">
<input type="checkbox" class="custom-control-input" id="mexp">
<label class="custom-control-label" for="mexp">Begin Material Expediting / Reciept</label>
</div>
<div class="custom-control custom-checkbox box-l">
<input type="checkbox" class="custom-control-input" id="paym">
<label class="custom-control-label" for="paym">Process Payment</label>
</div>
</div>
</div>
</div>
<script src="index.js" charset="utf-8"></script>
</body>
</html>