<?php include 'usercheck.php' ?>
<?php include 'genform.php' ?>
<html>
<head>
<title>Verify defect</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="style.css">
</head>
<body bgcolor="#FFFFFF">
<?php include 'header.php'; ?>
<h1>Verify defect</h1>
<p>Enter verification information.</p>
<?php ttdb_connect($db); ?>
<form method="post" action="verifypost.php" name="verify">
<p>
<input type="hidden" name="iddefect" value="<?php print($iddefect); ?>">
</p>
<table width="100%" border="0" cellpadding="2" class="tableStyle">
<tr>
<td class="tableFieldName" width="30%" valign="top">Verification description</td>
<td class="tableFieldContent" width="70%">
<textarea name="fVerificationDescription" cols="80" rows="10"><Enter verification information here></textarea>
</td>
</tr>
</table>
<div align="center">
<p><input type="submit" name="Submit" value="Accept">
<input type="button" name="cancel" value="Cancel">
</p></div>
</form>
<?php ttdb_close($db); ?>
</body>
<?php include 'footer.php'; ?>
</html>