-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact_submit.php
42 lines (37 loc) · 1.16 KB
/
contact_submit.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
41
42
<?php
$title = "Contact Us";
$level = "";
?>
<!DOCTYPE html>
<html lang="en">
<?php include 'header.php';?>
<body>
<div class="bread_area">
<div class="container">
<div class="row">
<div class="col-sm-12">
<ol class="breadcrumb">
<li><a href="index.php">Home</a></li>
<li class="active">Contact Us</li>
</ol>
</div>
</div>
</div>
</div>
<main class="site-main page-main">
<div class="container">
<div class="row">
<section class="page col-sm-12">
<h2 class="page-title">CONTACT US</h2>
<div id="submit">
<img src="img/purpleLogo.png" alt="wic logo"/><br>
<b>Thank You!</b><br>
Your message has been received by Lana Verschage Director of Women in Computing.
</div>
</section>
</div>
</div>
</main>
<?php include 'footer.php';?>
</body>
</html>