-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
44 lines (38 loc) · 1.39 KB
/
form.html
File metadata and controls
44 lines (38 loc) · 1.39 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML Reference</title>
</head>
<body>
<form method="post" action="upload.php" enctype="multipart/form-data">
<fieldset>
<legend>Create Vendors Account</legend>
<p>
<label for="name">name:</label> <input type="text" name="name" id="name" />
<p></p>
<label for="phonenumber">tel:</label> <input type="text" name="phonenumber" id="phonenumber" />
<p></p>
</fieldset>
<fieldset>
<label for="salesemail">Sales-Email:</label> <input type="email" name="salesemail" id="salesemail" />
<p></p>
<label for="artworkemail">Artwork-Email:</label> <input type="email" name="artworkemail" id="artworkemail" />
<p></p>
<label for="accountingemail">Accounting-Email:</label> <input type="email" name="accountingemail" id="accountingemail" />
<p></p>
<label for="w9form">W-9 form:</label> <input type="file" name="w9form" id="w9form" />
<p></p>
<label for="taxexemptionform">tax exemption form:</label> <input type="file" name="taxexemptionform" id="taxexemptionform" />
<p></p>
<label for="termsrequestfrom">terms request from:</label> <input type="file" name="termsrequestfrom" id="termsrequestfrom" />
</p>
<p><input value="Submit" type="submit" /></p>
<p></p>
<p><input value="Reset" type="reset"></p>
<p></p>
<a href="###">Homepage</a>
</fieldset>
</form>
</body>
</html>