forked from ebreimer/siena-iat-2016
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
37 lines (36 loc) · 1.23 KB
/
index.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
<?php
session_start();
if (session_id() != '') {
session_destroy();
}
ini_set('session.gc_maxlifetime', 1200);
session_set_cookie_params(1200);
session_start();
require_once('includes/helper.php');
$_SESSION['started'] = true;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Implicit Association Test </title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="includes/css/form.css">
<link rel="icon" href="/media/favicon.ico?" type="image/x-icon">
</head>
<body>
<div class="container">
<div id="directions">
<h2>You have opted to complete the Computer Science/Biology IAT</h2>
<br>
<p>Enter a description here. Please do not refresh pages or use the back button for any part of this study.</p>
</div>
<form action="survey.php">
<button type="submit" class="btn btn-block" id="cont">Continue to survey</button>
</form>
</div>
</body>
</html>