/extremedating/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/extremedating/trunk
2.1.1 by Daniel Johansson
Added csses, index.php and image folder
1
<!DOCTYPE html>
9.1.1 by Daniel Johansson
moved login.php, started using db in index.php
2
3
<?PHP
4
	include 'php/db.php';
9.1.2 by Daniel Johansson
Updated stuffz on the first page
5
	$firstname = $db->exec("SELECT firstName from Users");
6
	$surname = $db->exec("SELECT surName from Users");
9.1.1 by Daniel Johansson
moved login.php, started using db in index.php
7
?>
8
2.1.1 by Daniel Johansson
Added csses, index.php and image folder
9
<html>
5 by Gustav Hatvigsson
added licingsing information to the CSS and index.php
10
<!--
11
    ExtremeDating - a Hackathon 2013 project.
12
    Copyright (C) 2013 Gustav Hartvigsson <gustav.hartvigsson@gmail.com>
13
    Copyright (C) 2013 Daniel Johansson <maila@danieljohansson.nu>
14
15
16
    This program is free software: you can redistribute it and/or modify
17
    it under the terms of the GNU Affero General Public License as
18
    published by the Free Software Foundation, either version 3 of the
19
    License, or (at your option) any later version.
20
21
    This program is distributed in the hope that it will be useful,
22
    but WITHOUT ANY WARRANTY; without even the implied warranty of
23
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24
    GNU Affero General Public License for more details.
25
26
    You should have received a copy of the GNU Affero General Public License
27
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
28
-->
2.1.1 by Daniel Johansson
Added csses, index.php and image folder
29
	<header>
30
		<title>Lunchdating</title>
2.1.2 by Daniel Johansson
Fixed first test of profile page
31
		<link rel="stylesheet" type="text/css" href="css/main.css"/>
2.1.5 by Daniel Johansson
Edited html
32
		<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
2.1.1 by Daniel Johansson
Added csses, index.php and image folder
33
	</header>
34
	<body id="wrapper">
35
		<div id="profile">
2.1.6 by Daniel Johansson
Splitted out profile, started firstpage for flow
36
			<div id="profileheader">
9.1.2 by Daniel Johansson
Updated stuffz on the first page
37
				<p id="profilename"><?php echo $firstname . " " . $surname ?></p>
2.1.6 by Daniel Johansson
Splitted out profile, started firstpage for flow
38
			</div>
39
			<div id="profileimg">
40
				<img src="img/profilemockup.jpg"/>
41
				<p id="smallheader">Personer jag vill träffa:</p>
42
				<p id="profilelink">Herp Derp</p>
43
				<p id="profilelink">Jane Doe</p>
44
				<p id="smallheader">Personer som vill träffa mig:</p>
45
				<p id="profilelink">Jane Doe</p>
46
			</div>
47
			<div id="wallflow">
48
			</div>
2.1.1 by Daniel Johansson
Added csses, index.php and image folder
49
		</div>
50
	</body>
5 by Gustav Hatvigsson
added licingsing information to the CSS and index.php
51
</html>