-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (37 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#00B5AD">
<title>TeamMessenger</title>
<link rel="stylesheet" href="bower_components/semantic/dist/semantic.min.css">
</head>
<body ng-app="coop">
<nav class="ui orange inverted top fixed borderless menu" ng-controller="NavbarCtrl">
<a href="#!/" class="header item"><i class="inverted orange circular talk icon"></i>TeamMessenger</a>
<div class="right menu" ng-if="!loggedIn">
<div class="item">
<a href="#!/login" class="ui orange circular button">Sign in</a>
</div>
<div class="item">
<a href="#!/register" class="ui inverted circular button "><i class="sign in icon"></i>Sign up</a>
</div>
</div>
<div class="right menu" ng-if="loggedIn">
<div class="header item" ng-bind="member.fullname"></div>
<div class="item">
<div class="ui inverted circular button" ng-click="logout()">Logout</div>
</div>
</div>
</nav>
<div id="app" ng-view></div>
<script src='bower_components/jquery/dist/jquery.min.js'></script>
<script>
if (typeof require != 'undefined') {
window.$ = window.jQuery = require('./bower_components/jquery/dist/jquery.min.js')
}
</script>
<script src="bower_components/semantic/dist/semantic.min.js"></script>
</body>
</html>