-
Notifications
You must be signed in to change notification settings - Fork 0
/
playground.html
70 lines (69 loc) · 2.61 KB
/
playground.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>हस्तBoli-HastBoli</title>
<link rel="stylesheet" href="/homepage.css" />
<!-- Compiled and minified CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
</head>
<body>
<div class="main-flex-container z-depth-4 ">
<div class="nav-bar z-depth-2 ">
<a href="/"
><h1 class="main-heading brand-logo white-text">हस्तBoli</h1></a
>
<div class="nav-bar-items">
<div class="item waves-effect waves-light hoverable playground">
<a class="white-text" href="/playground">Playground</a>
</div>
<div class="item waves-effect waves-light hoverable team">
<a class="white-text" href="/team">Team</a>
</div>
<div class="item waves-effect waves-light hoverable sign-up">
<a class="white-text" href="/sign_up">Sign Up</a>
</div>
<div class="item waves-effect waves-light hoverable sign-in">
<a class="white-text" href="/sign_in">Sign In</a>
</div>
<div class="item waves-effect waves-light hoverable sign-in">
<a class="white-text" href="/learn">Learn</a>
</div>
</div>
</div>
<div class="main-content">
<p class="grey-text text-darken-3 flow-text about ">
The playground is a place for you to try out everything you have
learned.
</p>
<p class="grey-text text-darken-3 flow-text about ">
Note: The playground uses a CPU intensive algorithm to identify sign
language in your webcam. This may cause your browser to slow down.
</p>
<div class="btn waves-effect waves-light hoverable playground-btn">
<a class="white-text" href="http://localhost:3000">Go to Playground</a>
</div>
<style>
.playground-btn {
background-color: orange;
}
</style>
</div>
</div>
<div class="extra-information">
Made with ❤️ in Chandigarh, India
</div>
<script src="/check_session.js"></script>
</body>
</html>