-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
45 lines (42 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<base href="/">
<title>Dictionary</title>
<link href="https://fonts.googleapis.com/css?family=Proza+Libre|Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Proza+Libre|Roboto" rel="stylesheet">
<script src="node_modules/angular/angular.min.js"></script>
<script src="node_modules/angular-ui-router/release/angular-ui-router.min.js"></script>
<script src="./auth.js"></script>
<script src="./user/user.js"></script>
<script src="./user/profile.js"></script>
<script src="./user/userWords.js"></script>
<script src="./app.js"></script>
<script src="./config.js"></script>
<script src="/dictPage/dict.js"></script>
<script src="/signIn/signIn.js"></script>
<script src="/signUp/signUp.js"></script>
<link rel="stylesheet" href="stylesheets/style.css">
<link rel="stylesheet" href="stylesheets/formStyle.css">
</head>
<body ng-app="app" ng-controller="baseController">
<div id="topContainer">
<div id="top" class="card">
<nav id="topNav">
<ul class="right">
<li><a ui-sref=".home">Home</a></li>
<li ng-hide="isAuthed()"><a ui-sref=".signIn">Sign In </a></li>
<li ng-show="isAuthed()" class="dropdown"><a ui-sref="home">{{user.name}}<span style="color: white;"> ▾ </span></a>
<ul class="dropdown-content">
<li><a ui-sref="account">Account</a></li>
<li ng-click="signOut()"><a>Sign Out</a></li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
<ui-view></ui-view>
</div>
</body>
</html>