-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (68 loc) · 4.04 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Vendor Registration</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="extensions/sticky-header/bootstrap-table-sticky-header.css">
<script src="extensions/sticky-header/bootstrap-table-sticky-header.js"></script>
<meta name="author" content="Kunal Verma">
<meta name="title" property="og:title" content="Vendor Registration Application">
<meta name="image" property="og:image" content="https://raw.githubusercontent.com/kunal-ai/Vendor-Registration-App/main/Images/Vendor%20Registration%20Application.png" />
<meta property='og:description' content='Its an application made for registering vendors and maintaining them in the company database, which can be utilized for business processes' />
<meta property='og:url' content='//https://kunal-ai.github.io/Vendor-Registration-App/' />
<meta property='og:image' content='//https://raw.githubusercontent.com/kunal-ai/Vendor-Registration-App/main/Images/Vendor%20Registration%20Application.png' />
</head>
<body>
<!-- Header -->
<div style="position: sticky;top: 0px" class="d-flex flex-column flex-md-row align-items-center p-1 px-md-4 mb-3 bg-warning border-bottom box-shadow fixed-top">
<h2 class="display-6 my-2 mr-md-auto text-white ">Vendor Registration Application</h2>
<a class="btn btn-outline-secondary" href="https://github.com/kunal-ai">@Kunal Verma</a>
</div>
<!-- Topic Header -->
<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">Vendor Registration</h1>
<p class="lead">Vendor Registration is one of the initial steps in a Procurement Process, as this connects the vendor and the company for further business.This application has three scopes.</p>
</div>
<div class="album py-5 bg-light">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="card mb-4 box-shadow">
<img src="Images\Vendor Register Application.png" class="rounded">
<div class="card-body">
<p class="card-text">Register the vendor with the company database in simple way.This link can be shared with vendor or within company.</p>
<div class="d-flex justify-content-between align-items-center">
<a class="btn btn-outline-secondary btn-block" href="https://vendor-register.herokuapp.com/">Vendor Registration</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card mb-4 box-shadow">
<img src="Images\Vendor List.png" class="rounded">
<div class="card-body">
<p class="card-text">View the vendor list generated via the Vendor Registration Link for RFQ, PO placement or for business references.</p>
<div class="d-flex justify-content-between align-items-center">
<a class="btn btn-outline-secondary btn-block" href="https://vendor-register-list.herokuapp.com/">Vendor List</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card mb-4 box-shadow">
<img src="Images\Vendor List Manager.png" class="rounded">
<div class="card-body">
<p class="card-text">Manage the list prepared via the Vendor Registration App. Corrections or vendor data can be edited or updated here.</p>
<div class="d-flex justify-content-between align-items-center">
<a class="btn btn-outline-secondary btn-block" href="https://vendor-list-manager.herokuapp.com/">Vendor List Manager</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>