28 lines
752 B
PHP
28 lines
752 B
PHP
|
<?php include 'gori.php';?>
|
||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||
|
<HTML>
|
||
|
<?php include 'header.php'; ?>
|
||
|
<div class="content">
|
||
|
<div class="contactForm">
|
||
|
<label >
|
||
|
First name:
|
||
|
</label><br />
|
||
|
<input type="text" name="firstName" /> <br />
|
||
|
<label >
|
||
|
Last name:
|
||
|
</label><br />
|
||
|
<input type="text" name="lastName" /><br />
|
||
|
<label >
|
||
|
Email:
|
||
|
</label><br />
|
||
|
<input type="text" name="lastName" /><br />
|
||
|
<label >
|
||
|
Message:
|
||
|
</label><br />
|
||
|
<input type="text" name="message" height="300px"/><br />
|
||
|
<input type="button" name="send" value="Send"/>
|
||
|
</div>
|
||
|
</div>
|
||
|
</BODY>
|
||
|
</HTML>
|