-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
62 lines (44 loc) · 1.38 KB
/
Copy pathindex.php
File metadata and controls
62 lines (44 loc) · 1.38 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
require_once("models/config.php");
if (!securePage($_SERVER['PHP_SELF'])){die();}
//Prevent the user visiting the logged in page if he/she is already logged in
if(isUserLoggedIn()) { header("Location: account.php"); die(); }
require_once("models/header.php");
?>
<body>
<!-- header -->
<div id="header" style="height:50px; ">
<div id="navigation" style="height:300px;">
</div>
</div>
<!-- end header -->
<!-- shell -->
<div class="shell" >
<div id="main">
<div style="float:left; width:455px; height:500px;" >
<img src="css/images/homeScreen.png" />
</div>
<div style="float:left; width:455px; height:500px;">
<img style="padding-top:25px;" src="css/images/logo.png"/>
<div style="padding: 10px;">
<?php
include("left-nav.php");
?>
</div>
<div id='regbox' style="background-color:#efefef; padding:10px; border-radius:10px;">
<h2>Fashion is you</h2></br>
<p>FashionSource allows people, that are interested in fashion, to create combinations of clothes and to share it.</p></br>
<p>Be the designer of tomorrow by creating beautiful clothes combinations by using layouts and our large database of clothes.</p>
</div>
</div>
</div>
<!-- end main -->
<!-- footer -->
<div id="footer">
<?require_once("models/footer.php");?>
</div>
<!-- end footer -->
</div>
<!-- end shell -->
</body>
</html>