-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (48 loc) · 2.69 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html>
<head>
<title>astralship.org membership platform (WORK IN PROGRESS)</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-route.js'></script>
<script src="https://www.gstatic.com/firebasejs/3.7.4/firebase.js"></script>
<script src="https://cdn.firebase.com/libs/angularfire/2.3.0/angularfire.min.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyCx6OADQ2Yx_zAgIGIzFed7W6ODS-h1W0w",
authDomain: "astralship-9217c.firebaseapp.com",
databaseURL: "https://astralship-9217c.firebaseio.com",
projectId: "astralship-9217c",
storageBucket: "astralship-9217c.appspot.com",
messagingSenderId: "461021446139"
};
firebase.initializeApp(config);
</script>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/dashboardCtrl.js"></script>
<script type="text/javascript" src="js/loginCtrl.js"></script>
<script type="text/javascript" src="js/profileCtrl.js"></script>
<script type="text/javascript" src="js/userService.js"></script>
<script type="text/javascript" src="js/eventService.js"></script>
</head>
<body ng-app="app">
<div class="wip">
<p>This app is <strong>work in progress</strong>, <strong>proof of concept</strong>, <strong>working prototype</strong> - expect changes and some things may not be full functional.</p>
<p>List of <a href="https://github.com/astralship/membership-platform/issues">open issues</a>, our <a href="http://astralship.org/jobs">jobs page</a> or <a href="http://astralship.org/contact">contact us</a> directly.</p>
<p>We are on the mission to <a href="http://astralship.org/mission">heal the planet</a> and we need your help, we are together in this.</p>
</div>
<div class="container">
<div ng-include="'templates/header.html'"></div>
<div ng-view></div>
</div>
</body>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<script src="https://use.fonticons.com/57dfd6cc.js"></script> <!-- FONT AWESOME -->
<script>
if (location.host.indexOf("localhost") !== -1) {
document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')
}
</script>
</html>