<tbody class="seo">
					<tr>
						<td>URL display:</td>
						<td><input type="text" placeholder="Example: john-says-we-are-not-alone" name="urlTag" value="<?php 
if (isset($_GET['code'])) {
    echo $pageToEdit->getUrlTag();
}
?>
"></td>
					</tr>
					<tr>
						<td>Meta description:</td>
						<td><textarea placeholder="Example: This is 'CompanyName' best work" name="metaDesc"><?php 
if (isset($_GET['code'])) {
    echo $pageToEdit->getMetaDesc();
}
?>
</textarea></td>
					</tr>
					<tr>
						<td>Meta keywords:</td>
						<td><textarea placeholder="Example: HTML, CSS, PHP, JAVA, SERVERS" name="metaKeywords"><?php 
if (isset($_GET['code'])) {
    echo $pageToEdit->getMetaKeywords();
}
?>
</textarea></td>
					</tr>
				</tbody>