-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinvoiceForm.html
43 lines (42 loc) · 980 Bytes
/
invoiceForm.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
<!DOCTYPE html>
<html>
<head>
<title>Invoice Form</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body>
<div>
<div class="fadeColors">
<h1 align="center"><p class="firstTent">AsURent</p>Invoice</h1>
</div>
<form action="" method="post">
<fieldset>
<table>
<legend>Please fill out the following information for your invoice</legend>
<tr>
<td>Invoice Id:</td>
<td><input type="text" name="invoiceId"></td>
</tr>
<tr>
<td>Contract Id:</td>
<td><input type="text" name="contractId"></td>
</tr>
<tr>
<td>Base Rate:</td>
<td><input type="text" name="baseRate"></td>
</tr>
<tr>
<td>Created Date:</td>
<td><input type="date" name="startDate" placeholder="Month/Day/Yead"></td>
</tr>
</table>
</fieldset><br>
<input type="submit" value="Submit Invoice">
<input type="reset" value="Restart">
</form>
</div>
<footer>
<p>® AsURent</p>
</footer>
</body>
</html>