-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
71 lines (60 loc) · 1.88 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
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
70
<?php
/**
* Short description for index.php
*
* Copyright (C) 2013 KuoE0 <[email protected]>
*
* Distributed under terms of the MIT license.
*
* @package index
* @author KuoE0 <[email protected]>
* @version 0.1
* @copyright (C) 2013 KuoE0 <[email protected]>
*/
include_once 'db_con.php';
include_once 'global.php';
include_once 'function.php';
if (is_setup($db)) {
header("Location: register.php");
}
?>
<html>
<head>
<title>ScheDemo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="static/components/normalize-css/normalize.css" rel="stylesheet" />
<script src="static/components/jquery/dist/jquery.min.js"></script>
<link href="static/components/github-fork-ribbon-css/gh-fork-ribbon.css" rel="stylesheet" />
<link href="static/components/semantic/build/packaged/css/semantic.min.css" rel="stylesheet" />
<script src="static/components/semantic/build/packaged/javascript/semantic.min.js"></script>
<script src="static/js/main.js"></script>
<link href="static/css/style.css" rel="stylesheet" />
</head>
<body>
<div class="wrap">
<div class="content">
<div class="github-fork-ribbon-wrapper right">
<div class="github-fork-ribbon">
<a href="https://github.com/KuoE0/ScheDemo">Fork me on GitHub</a>
</div>
</div>
<div class="ui one column page grid">
<div class="column">
<h1 id="title" class="ui center aligned header">ScheDemo</h1>
<h2 id="subtitle" class="ui center aligned header">An application for scheduling.</h2>
<div class="centerize-box">
<div id="btn-setup" class="ui green button">Start</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="ui one column page grid">
<div class="column">
<p>Powered by <a href="http://github.com/KuoE0/ScheDemo/">ScheDemo</a>.</p>
</div>
</div>
</div>
</body>
</html>