-
Notifications
You must be signed in to change notification settings - Fork 4
/
contact.php
35 lines (28 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>BAUST Online</title>
<link href="https://fonts.googleapis.com/css?family=Work+Sans:300">
<link rel="stylesheet" type="text/css" href="css/styles.css" />
</head>
<body>
<?php $active_page = 'contact'; include('includes/header.php'); ?>
<div class="container">
<div class="login-box">
<center><h1>Contact</h1></center>
<form action="contact.php" method="post">
<p>Name</p>
<input type="text" name="name" placeholder="Enter Your name" required>
<p>Email</p>
<input type="email" name="email" placeholder="Enter Email Address" required>
<p>Subject</p>
<input type="text" name="subject" placeholder="Enter Subject" required>
<p>Message</p>
<textarea cols="30" rows="10" name="message" placeholder="Enter Your Message" required></textarea>
<input type="submit" name="submit" value="Submit">
</form>
</div>
</div>
<?php include('includes/footer.php'); ?>
</body>
</html>