-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtutorial.php
More file actions
56 lines (51 loc) · 1.61 KB
/
tutorial.php
File metadata and controls
56 lines (51 loc) · 1.61 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
<?php
require_once 'includes/QBCoref.class.php';
$qbc = new QBCoref();
?>
<!doctype html>
<html lang="us">
<head>
<meta charset="utf-8">
<title>Coreference Tool - Tutorial</title>
<link href="css/smoothness/jquery-ui-1.10.4.custom.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/bootstrap-theme.min.css" rel="stylesheet" media="screen">
<link href="css/coref.css" rel="stylesheet">
<script src="js/jquery-1.10.2.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery-ui-1.10.4.custom.js"></script>
</head>
<body>
<?php
$active_page = 'tutorial';
require_once 'views/topnav.php';
?>
<div class="container">
<div class="row">
<div class="page-header">
<h2>Tutorial</h2>
</div>
<?php if (isset($_GET['first']) && $_GET['first'] == 1) { ?>
<p>
Welcome, <?php print $_SESSION['username']; ?>! We've noticed this is your
first time logging in. Please take a few minutes and watch the following
tutorial video which will help you understand how to get started. If you don't need help
go straight to the <a href="index.php">questions</a>.
</p>
<?php } ?>
<div align="center">
<iframe width="853" height="480" src="//www.youtube.com/embed/iIikEGvQULw" frameborder="0" allowfullscreen></iframe>
</div>
<?php if (isset($_GET['first']) && $_GET['first'] == 1) { ?>
<p class="text-center">
<br />
<a href="index.php">Skip Tutorial</a>
</p>
<?php } ?>
</div>
</div>
<?php
require_once 'views/footer.php';
?>
</body>
</html>