-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
101 lines (84 loc) · 3.48 KB
/
index.html
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="Shortcut Icon" href="https://static.ouorz.com/eugrade.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Eugrade | Communication and collaboration platform for Education</title>
<meta name="keywords" content="eugrade,lms,engrade,engrade pro,learning management system">
<link type="text/css" rel="stylesheet" href="dist/css/main.css">
<style>
body {
background: transparent;
font-family: sans-serif;
}
</style>
</head>
<body>
<div id="app">
<header class="index-bg">
<h1><img src="https://static.ouorz.com/eugrade_logo.png"> Eugrade</h1>
<nav>
<p><a href="https://github.com/HelipengTony/pokers">Open Source</a></p>
<p><a href="https://www.ouorz.com">Blog</a></p>
<p><a href="https://eugrade.onrender.com/login.html">Login</a></p>
</nav>
</header>
<section class="index-header">
<h1>Communication and Collaboration Platform</h1>
<p>for Education.</p>
<a href="https://eugrade.onrender.com/login.html">Get Started <b>→</b></a>
</section>
<section class="index-demo">
<img src="https://static.ouorz.com/[email protected]">
<div class="content">
<h3>Grades System</h3>
<p>Manage students' grades through a more effient way. A rediscovery of grades data. That's Eugrade.</p>
</div>
</section>
<section class="index-demo index-demo-one">
<img src="https://static.ouorz.com/[email protected]">
<div class="content">
<h3>Files System</h3>
<p>Where information is easy to find, forever. That's Eugrade.</p>
</div>
</section>
<section class="index-demo index-demo-two">
<img src="https://static.ouorz.com/[email protected]">
<div class="content">
<h3>Instant Messaging</h3>
<p>A distraction-free IM platform where conversations stay organized and on-topic. That’s Eugrade.</p>
</div>
</section>
<footer></footer>
</div>
<script type="text/javascript">
var cookie = {
"set": function setCookie(name, value) {
var Days = 30;
var exp = new Date();
exp.setTime(exp.getTime() + Days * 24 * 60 * 60 * 1000);
document.cookie = name + "=" + escape(value) + ";expires=" + exp.toGMTString();
},
"get": function getCookie(name) {
var arr, reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)");
if (arr = document.cookie.match(reg))
return unescape(arr[2]);
else
return null;
},
"del": function delCookie(name) {
var exp = new Date();
exp.setTime(exp.getTime() - 1);
var cval = cookie.get(name);
if (cval != null)
document.cookie = name + "=" + cval + ";expires=" + exp.toGMTString();
}
}
if (!!cookie.get('logged_in_id')) {
window.location.href = 'https://eugrade.onrender.com/pro';
}
</script>
</body>
</html>