source: code/Website/index.php@ 7937

Last change on this file since 7937 was 7878, checked in by dennisw, 15 years ago
File size: 1.9 KB
RevLine 
[7849]1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5<title>SaveEnergy Leiden</title>
6<link href="css/style.css" rel="stylesheet" type="text/css" />
7
8</head>
9
10<body>
11<div id="container">
12 <div id="header">
13 <img src="images/Untitled-3_01.jpg" />
14 </div>
15
16
17 <div id="navigation">
18 <a href="index.php" "style='color:#f7921c'">Home</a> <a href="page1.php?p=bar">Grafieken</a> <a href="page2.php">Uitleg</a> <a href="page3.php">Info</a>
19 </div>
20
21
22 <div id="content_wrap">
23 <div id="content_top">
24 </div>
25 <div id="content">
26 <h1>Home</h1>
[7878]27 <h2>Welkom!</h2>
28 <p>Welkom op de website van Save Energy Leiden.
29 <?php
30 session_start();
31 if (session_is_registered("session_user") && session_is_registered("session_id"))
32 {
33 }
34 else
35 {
36 echo "Als u de grafieken wilt bekijken kunt u hieronder inloggen.</p>
37 <FORM ACTION='login.php' METHOD=POST>
38 <table width='214' height='95' border='0'>
39 <tr>
40 <td width='48' class='para'>Gebruikersnaam</td>
41 <td width='105'><input type=TEXT name='username' size=16></td>
42 <td width='47'>&nbsp;</td>
43 </tr>
44 <tr>
45 <td class='para'>Wachtwoord</td>
46 <td><input type=password name='password' size=16></td>
47 <td><input type=SUBMIT name='SUBMIT' value='Login'></td>
48 </tr>
49 </table>
50 </FORM>
51 ";
52 }
53 ?>
[7849]54
55<div id="chart"></div>
56<br />
57<br />
58 </div>
59
60 <div id="content_bottom">
61 </div>
62 </div>
63
64
65 <div id="footer">
66 Save Energy Leiden is een onderdeel van het <a href="http://www.ict4saveenergy.eu/">Save Energy project</a>.
67 </div>
68</div>
69</body>
70
71</html>
Note: See TracBrowser for help on using the repository browser.