-
Notifications
You must be signed in to change notification settings - Fork 0
/
email.php
40 lines (35 loc) · 922 Bytes
/
email.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
<?php include 'email_form.php'; ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Send an Email</title>
</head>
<body>
<?php echo $alert; ?>
<center>
<div class="contact-section">
<div class="contact-form">
<form class="contact" action="" method="post">
<h2>Send an Email</h2>
<label>Name</label>
<input name="name" type="text" placeholder="Enter Name">
<br><br>
<label>Email</label>
<input name="email" type="text" placeholder="Enter Email" required>
<br><br>
<p>Message</p>
<textarea name="message" rows="5" placeholder="Type Message"></textarea>
<br><br>
<button type="submit" name="submit" class="send-btn" value="Send">Submit</button>
</form>
</div>
</div>
</center>
<script type="text/javascript">
if(window.history.replaceState){
window.history.replaceState(null, null, window.location.href);
}
</script>
</body>
</html>