-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
25 lines (24 loc) · 877 Bytes
/
Copy pathcontact.php
File metadata and controls
25 lines (24 loc) · 877 Bytes
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
<?php
include 'function.php';
include 'header.php';
?>
<form class="infoForm"> <div class="form-group">
<label for="exampleFormControlInput1">Name</label>
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label for="exampleFormControlInput2">Email address</label>
<input type="email" class="form-control" id="exampleFormControlInput2" placeholder="name@example.com" required>
</div>
<div class="form-group">
<textarea class="form-control" id="exampleFormControlTextarea1" rows="10" placeholder="Message..."></textarea>
</div>
<button type="submit" value="Send" class="btn btn-success btn-lg">Send</button>
</form>
<address>
123 York street BM
<p>Tel: 111-2392-1212</p>
</address>
<?php
include 'footer.php';
?>