-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
34 lines (33 loc) · 1.49 KB
/
contact.php
File metadata and controls
34 lines (33 loc) · 1.49 KB
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
<?php
session_start();
include_once("views/header.php");
include_once("views/navigation.php");
?>
<div class="container-fluid">
<div class="row align-items-center justify-content-center min-vh-100">
<form action="" method="" class="w-50 align-items-center">
<div class="form-group">
<label for="firstName">First Name:</label>
<input type="text" name="firstName" id="firstName" class="form-control"><span class="text-danger" id="firstNameError"></span><br>
</div>
<div class="form-group">
<label for="lastName">Last Name:</label>
<input type="text" name="lastName" id="lastName" class="form-control"><span class="text-danger" id="lastNameError"></span><br>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="text" name="email" id="email" class="form-control"><span class="text-danger" id="emailError"></span><br>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" style="resize:none" id="message" name="message" rows="3"></textarea>
<span class="text-danger" id="messageError"></span><br>
</div>
<input type="button" id="contactButton" name="contactButton" class="btn btn-dark" value="Send"><br>
<span id="response" class="text-success text-center h6 m-4"></span>
</form>
</div>
</div>
<?php
include_once("views/footer.php");
?>