-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotfound.html
More file actions
34 lines (32 loc) · 1.14 KB
/
notfound.html
File metadata and controls
34 lines (32 loc) · 1.14 KB
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
<html>
<!--Created by Ross Hunter Copyright (c) 2017 -->
<head>
<meta name=”description” content="Create amazing programs with Noodle, a new educational programming language built for collaboration. Get coding today with Noodle Create.">
<script type="text/javascript" src="/assets/js/jquery.js"></script>
<script type="text/javascript" src="/assets/js/script.js"></script>
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
<script>
$(document).ready(function() {
checkSession();
});
</script>
</head>
<body>
<div id="bodyDiv">
<div id="navbar">
<ul>
<li id="logo">
<a href="/create"> <img src="/assets/images/logoBeta.png" /> </a>
</li>
<li>
<a id="loginRegTabLink"><span class="userTabNotSelected" onclick="loginRegisterClick()" id="loginRegTab">Login/Register</span></a>
</li>
<li class="normalTab"><a href="/learn">Learn</a></li>
<li class="normalTab"><a href="/create">Create</a></li>
</ul>
</div>
<div class="notfound">
<img class="notfoundimg" src="/assets/images/pageNotFound.png" />
</div>
</body>
</html>