source: trunk/www/htdocs/feedback.php @ 74

Last change on this file since 74 was 74, checked in by guyru, 6 years ago

work on screen shot page and initial import of the open yahtzee site
files to the svn

File size: 718 bytes
Line 
1<?php
2require_once("template.php");
3$template = new Template;
4$template->siteTitle = "Open Yahtzee - Feedback";
5
6
7$template->content = '<h2>Feedbacks and Comments</h2>
8<div>Here you can send feedback to the developers of Open Yahtzee. Any suggestion, comments, questions and bug reports will be welcomed. Your feedback helps up make Open Yahtzee better!
9</div>
10<form action="feedout.php" method="post">
11<div>
12Your Name:<br /><input type="text" name="name" /><br />
13E-mail:<br /><input type="text" name = "email" /><br /><br />
14Comments
15<textarea rows="10" cols="50" style="width:100%;height:200px" name="comments"></textarea><br /><br />
16<input type="submit" value="Submit" />
17</div>
18</form>
19';
20
21$template->out();
22?>
Note: See TracBrowser for help on using the repository browser.