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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="styles/style_page_news.css" />
<title>ACTICLIM - Consultation des news</title>
<script language="javascript" type="text/javascript">
function quitter() {
if(confirm("Êtes-vous certain de vouloir quitter cette application ?"))
{
document.location.href="index.php"
}
}
</script>
</head>
<body bgcolor="#CCCCCC">
<div class="menu">
<table width="200" border="1" align="center">
<form>
<tr>
<td> <input name="cons_news" type="button" value="CONSULTATION DES NEWS" style="font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; font-weight:bold; width:185px; cursor:pointer; " onClick="window.location.href='consultat_news.php'"/></td>
<td> <input name="ajout_news" type="button" value="AJOUT DE NEWS" style="font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; font-weight:bold; width:185px; cursor:pointer;" onClick="window.location.href='ajout_news.php'"/></td>
<td> <input name="modif_news" type="button" value="MODIFICATION DE NEWS" style="font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; font-weight:bold; width:185px; cursor:pointer;" onClick="window.location.href='modif_news.php'"/></td>
<td> <input name="supp_news" type="button" value="SUPPRESSION DE NEWS" style="font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; font-weight:bold; width:185px; cursor:pointer;" onClick="window.location.href='suppress_news.php'"/></td>
<td> <input name="quitter" type="button" value="QUITTER " style="font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; font-weight:bold; width:185px; cursor:pointer;" onclick="quitter();" /></td>
</tr>
</form>
</table>
</div><!-- fin div menu -->
</body>
</html> |