-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
26 lines (26 loc) · 970 Bytes
/
contact.php
File metadata and controls
26 lines (26 loc) · 970 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
26
<?php include 'header.php'; ?>
<div class="container">
<div class="row">
<div class="col-md-6">
<h2 class="text-aside">Have a question? Or just simply want to send us a message? All you need to do is complete the form!</h2>
</div>
<div class="col-md-6">
<form action="contact_action.php" method="POST" class="text-aside">
<div class="form-group">
<label>E-mail:</label>
<input type="email" name='email' class="form-control" required>
<br>
<label>Subject: </label>
<input type="text" name='subject'class="form-control" required>
<br>
<label>Message:</label>
<textarea class="form-control" name='msg' required></textarea>
<br>
<input type="submit" class="btn btn-primary float-right" value="Send">
</div>
</form>
</div>
</div>
</div>
<div class="helper"></div>
<?php include 'footer.php'; ?>