-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.php
59 lines (57 loc) · 2.2 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE HTML>
<html>
<head>
<title>Electricity Billing System - contact us</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
</head>
<body>
<div id="main">
<div id="header">
<div id="logo">
<div id="logo_text">
<!-- class="logo_colour", allows you to change the colour of the text -->
<h1><a href="index.php">Electricity Billing System</span></a></h1>
</div>
</div>
<div id="menubar">
<ul id="menu">
<!-- put class="selected" in the li tag for the selected page - to highlight which page you're on -->
<li><a href="login.php">Log In</a></li>
<li><a href="index.php">Home</a></li>
<li><a href="about.php">About Us</a></li>
<li class="selected"><a href="contact.php">Contact Us</a></li>
</ul>
</div>
</div>
<div id="site_content">
<div class="sidebar">
<h1>Latest News</h1>
<h4>New Website Launched</h4>
<br>
<h1>Search</h1>
<form method="post" action="#" id="search_form">
<p>
<input class="search" type="text" name="search_field" value="Enter keywords....." />
<input name="search" type="image" style="border: 0; margin: 0 0 -9px 5px;" src="style/search.png" alt="Search" title="Search" />
</p>
</form>
</div>
<div id="content">
<h1>Contact Us</h1><br>
<form action="feedback.php" method="post">
<div class="form_settings">
<p><span>Name</span><input class="contact" type="text" name="username" value="" /></p>
<p><span>Phone Number</span><input class="contact" type="text" name="phno" value="" /></p>
<p><span>Email Address</span><input class="contact" type="text" name="email" value="" /></p>
<p><span>Message</span><textarea class="contact textarea" rows="8" cols="100" name="msg"></textarea></p>
<p style="padding-top: 15px"><span> </span><input class="submit" type="submit" name="contact_submitted" value="submit" /></p>
</div>
</form>
</div>
</div>
<div id="footer">
<p>Copyright © EBMS</p>
</div>
</div>
</body>
</html>