-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.php
executable file
·61 lines (51 loc) · 1.97 KB
/
welcome.php
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>PHYLO | Expert Edition</title>
<link href="css/trontastic/jquery-ui-1.8.17.custom.css" rel="stylesheet" type="text/css" />
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/credits.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/lib/bootstrap.min.js"></script>
<script type="text/javascript" src="js/lib/JSON.js"></script>
</head>
<body>
<?php $THIS_PAGE = 'welcome'; include 'navbar.php'; ?>
<div id="page-wrapper">
<div id="page">
<div id="header-wrapper">
<div id="header">
</div>
</div>
<div id="inner-wrapper">
<h2>Phylo Expert Edition</h2>
<br/>
<p class="welcome">
Welcome to the Phylo expert edition.
This version will enable you to:
</p>
<ul class="welcome">
<li class="welcome">Play large puzzles of more than 300 bricks</li>
<li class="welcome">Collaborate and improve solutions of other players</li>
<li class="welcome">Edit ancestor sequences</li>
<li class="welcome">Store any intermediate configuration during your game</li>
</ul>
<p class="welcome">
To access this interface you need to have played 20 puzzles or more of the <a href="http://phylo.cs.mcgill.ca">classic edition</a>.
</p>
<p class="welcome">
Login and go to the Play menu. There, you will be able to choose which puzzle you want to play. Do not forget to check your history either.
From this menu, you can improve your old puzzles or improve the best score submitted by other users.
</p>
<p class="welcome">
Have fun and increase your contribution to science!
</p>
<p class="welcome">
<a href="about.php">The Phylo team</a>
</p>
</div>
</div>
</div>
</body>
</html>