-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprofile.html
More file actions
40 lines (38 loc) · 1.46 KB
/
Copy pathprofile.html
File metadata and controls
40 lines (38 loc) · 1.46 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
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>Intercode</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="https://cdn.firebase.com/js/client/2.4.1/firebase.js"></script>
<script type="text/javascript" src="js/jquery.lightbox_me.js"></script>
<script type="text/javascript" src="js/themes.js"></script>
<script type="text/javascript" src="js/themeChooser.js"></script>
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/profile.js"></script>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<a id="hamburger">☰</a>
<h1>Profile</h1>
</header>
<section id = "menu">
<ul>
<li><a href="learning.html">Lessons</a></li>
<li><a href="#" class="active">Profile</a></li>
<li><a href="#" onclick="ref.unauth();window.location.href=('index.html');">Logout</a></li>
</ul>
</section>
<div class="spinner"></div>
<section id = "profile-wrapper" style="display: none">
<img id="profilepic"/><br>
<span class="welcome">Welcome back,</span><br>
<span class="points">You currently have</span><span class="ranking"> That means you are </span><br><br><br>
<a href="#" class="button big" onclick="displayChoices();" id="interestbutton">YOUR INTERESTS</a><br><br><br>
</section>
<section id = "themes">
<h1>Choose some interests.</h1>
</section>
</body>
</html>