-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOrderForm
More file actions
23 lines (22 loc) · 1.23 KB
/
OrderForm
File metadata and controls
23 lines (22 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//This is the form with a little bit of added input feilds. I useed it to recieve orders for custome websites on my bussiness website www.imaginex.website. Obviously you can change it to fit your needs. Good Luck!//
<div class="container">
<form class="form" action="mailto:imaginexdevelopment@gmail.com" method="post" enctype="text/plain">
<img class="formPic" src="Images/xlogomini.png">
<b>Name:</b><br>
<input class="form1" type="text" name="name"><br>
<b>E-mail:</b><br>
<input class="form1" type="text" name="E-mail"><br>
<b>Phone Number:</b><br>
<input class="form1" type="text" name="Phone"><br>
<input type="checkbox" id="package1" name="package" value="Basic">
<label for="package1">Basic Website $100</label><br>
<input type="checkbox" id="package2" name="package" value="E-com">
<label for="package2">E-commerce Website $500</label><br>
<input type="checkbox" id="package3" name="package" value="Prem. E-com">
<label for="package3">Premium E-commerce Website $1000</label><br>
<b>Project Description:</b><br>
<input class="form2" type="text" name="comment" size="50"><br><br>
<input class="btn1" type="submit" value="Send">
<input class="btn2" type="reset" value="Reset">
</form>
</div>