forked from gbowne1/spmssite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rfq.html
78 lines (78 loc) · 3.68 KB
/
rfq.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/js/all.min.js" integrity="sha512-8pHNiqTlsrRjVD4A/3va++W1sMbUHwWxxRPWNyVlql3T+Hgfd81Qc6FC5WMXDC+tSauxxzp1tgiAvSKFu1qIlA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="./rfqStyles.css">
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap"
rel="stylesheet"
/>
<title>Quotes</title>
</head>
<body>
<main>
<form class="rfqForm" id="form">
<div class="inputs">
<div class="fieldForm">
<label for="businessName"><i class="fa-solid fa-briefcase"></i> Business Name</label>
<input type="text" name="businessName" id="businessName">
<small></small>
</div>
<div class="fieldForm">
<label for="personName"><i class="fa-solid fa-user"></i> Name</label>
<input type="text" name="personName" id="personName">
<small></small>
</div>
<div class="fieldForm">
<label for="adress"><i class="fa-solid fa-location-dot"></i> Adress</label>
<input type="text" name="adress" id="adress">
<small></small>
</div>
<div class="fieldForm">
<label for="phone"><i class="fa-solid fa-phone"></i> Phone Number</label>
<input type="tel" name="phone" id="phone">
<small></small>
</div>
<div class="fieldForm">
<label for="fax"><i class="fa-solid fa-fax"> </i> Fax Number</i></label>
<input type="tel" name="fax" id="fax">
<small></small>
</div>
<div class="fieldForm">
<label for="website"><i class="fa-solid fa-at"></i> Website</label>
<input type="text" name="website" id="website">
<small></small>
</div>
<div class="fieldForm">
<label for="email"><i class="fa-solid fa-envelope"></i> Email Adress</label>
<input type="email" name="email" id="email">
<small></small>
</div>
<div class="fieldForm">
<label for="mobile"><i class="fa-solid fa-mobile-retro"></i> Mobile/Text Number</label>
<input type="tel" name="mobile" id="mobile">
<small></small>
</div>
<div class="fieldForm">
<label for="contactPerson"><i class="fa-solid fa-user-pen"></i> Contact Person</label>
<input type="text" name="contactPerson" id="contactPerson">
<small></small>
</div>
</div>
<div class="textArea">
<textarea name="message" id="message" cols="30" rows="10" maxlength="1500"></textarea>
<div class="fieldForm">
<label for="attachment"><i class="fa-solid fa-paperclip"></i> Attach file</label>
<input type="file" name="attachment" id="attachment">
<small></small>
</div>
<input type="submit" value="Send" class="submitButton">
</div>
</form>
</main>
<script src="./rfqValidation.js"></script>
</body>
</html>