-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
59 lines (42 loc) · 2.33 KB
/
contact.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
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
<div id="contact">
<div class="container contact-text">
<?php echo $contact_title; ?>
</div>
<div class="container">
<form class="checkout" method="post" action="contact_mail.php">
<div class="form-row align-items-center ">
<label for="formGroupInput"><?php echo $contact_name ?></label>
<input type="text" class="form-control" id="" name="name" value="" placeholder="John Doe" required>
<label for="formGroupInput"><?php echo $contact_email ?></label>
<input type="email" class="form-control" id="" name="email" value="" placeholder="123@email.com" required>
</div>
<div class="form-row align-items-center">
<div class="col">
<label for="formGroupInput"><?php echo $contact_address ?></label>
<input type="text" class="form-control" id="" name="address" value="" placeholder="1234 Main St" required>
</div>
</div>
<div class="form-row align-items-center">
<div class="col-sm-4">
<label for="formGroupInput"><?php echo $contact_city ?></label>
<input type="text" class="form-control" id="" name="city" value="" placeholder="" required>
</div>
<div class="col-sm-4">
<label for="formGroupInput"><?php echo $contact_country ?></label>
<input type="text" class="form-control" id="" name="country" value="" placeholder="" required>
</div>
</div>
<div class="form-row align-items-center">
<div class="col-12">
<label for="exampleFormControlTextarea1"><?php echo $contact_message ?></label>
<textarea class="form-control" id="" name="body" rows="3" value="" required></textarea>
</div>
</div>
<div class="form-row align-items-center contact-btn">
<input class="checkout-btn btn btn-dark" type="submit" value='<?php echo $contact_submit ?>'>
</div>
</form>
<br>
<br>
<br>
</div>