-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
27 lines (27 loc) · 1.04 KB
/
index.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
<html>
<head>
<link rel="stylesheet" href="bootstrap.min.css" />
</head>
<body>
<center>
<br>
<form action="invoice.php" method="get" class="col-sm-4">
<label class="label label-primary">Company Name</label>
<input class="form-control" type="text" name="company" /><br>
<label class="label label-primary">Invoice Number </label>
<input class="form-control" type="text" name="ino" /><br>
<label class="label label-primary">GSTIN : </label>
<input class="form-control" type="text" name="gst" /><br>
<label class="label label-primary">Client : </label>
<input class="form-control" type="text" name="client" /><br>
<label class="label label-primary">Project : </label>
<input class="form-control" type="text" name="project" /><br>
<label class="label label-primary">Description : </label>
<input class="form-control" type="text" name="description" /><br>
<label class="label label-primary">Amount : </label>
<input class="form-control" type="text" name="amount" /><br>
<input class="btn btn-success" type="submit" value="Submit" /><br>
</form>
</center>
</body>
</html>