-
Notifications
You must be signed in to change notification settings - Fork 0
/
error_page.php
executable file
·69 lines (52 loc) · 1.48 KB
/
error_page.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
62
63
64
65
66
67
68
69
<?php
session_start();
if(isset($_SESSION['error_message'])){
$error = $_SESSION['error_message'];
}
else {
$error = "Error occurred.";
}
?>
<!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>Error Page</title>
<link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<link href="css/style.css" rel="stylesheet">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-11 text-center">
<h2 class="">Explore By Example:</h2>
<h4>An Automatic User Navigation System for Interactive Data Exploration</h4>
</div>
<div class="col-md-1 large-top-margin">
<label>Welcome</label>
</div>
</div>
<div class="row">
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<div class="col-md-12">
<form class="" action="connect.php" method="post">
<?php
echo "<p><strong>{$error}</strong></p>";
?>
<button type="submit" class="btn btn-default">Exit</button>
</form>
</div>
</div>
</div>
</body>
</html>