-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.php
67 lines (64 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
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>Welcome to CloudIDE!</title>
<link rel="stylesheet" href="css/index.css" type="text/css" />
<script>
function changeToAdminHome(){
window.location.href="admin.php";
}
function changeToLoginPage(){
window.location.href="login.php";
}
</script>
</head>
<body>
<div class="panel" OnClick="changeToAdminHome()">
</div>
<div class="container">
<h1>
Welcome to Cloud IDE!
</h1>
<center>
<div class="button" onclick="changeToLoginPage()">
<span class="index-button">
Getting Started!
</span>
</div>
</center>
<br><br>
<div class="leftside">
<div class="smalltitle">
New Features and Updates
</div>
<ul id="left">
<!-- see history.php -->
<li>
2014/1/30 login window created
</li>
<li>
2014/1/30 core::Highlight updated
</li>
<li>
2014/1/29 Basic CSS and frames
</li>
<li>
2014/1/29 Highligh Core added
</li>
<!-- if the screen is too small<li>
2014/1/29 GitHub Synced
</li>
<li>
2014/1/29 login page created
</li>-->
<li>
<a href="history.php">more...</a>
</li>
</ul>
</div>
<div class="rightside">
</div>
</div>
</body>
</html>