-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathactions.html
69 lines (58 loc) · 1.77 KB
/
actions.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
63
64
65
66
67
68
69
<head>
<meta charset="UTF-8">
<title>Dashboard</title>
<script src="https://www.gstatic.com/firebasejs/5.10.0/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyB8r3dDr-4aCRuA4VgnKhBCSC3ctsQwZjM",
authDomain: "ccgsrobotics-d4422.firebaseapp.com",
databaseURL: "https://ccgsrobotics-d4422.firebaseio.com",
projectId: "ccgsrobotics-d4422",
storageBucket: "ccgsrobotics-d4422.appspot.com",
messagingSenderId: "858227198958"
};
firebase.initializeApp(config);
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel='stylesheet' href='css/actions.css'>
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans" rel="stylesheet">
</head>
<!-- nav -->
<nav class="l-nav">
<div class="profile l-inline">
<img class="profile-pic" id="displayicon" src="Profile-01.png" />
<h4 class="profile-title" id="displayname">Loading...</h4>
</div>
<ul class="l-stacked">
<li>
<a href="#" class="is-active trans" id="blo">
<span>Blog Upload</span>
</a>
</li>
<li>
<a href="#" class="trans" id="loan">
<span>Loans</span>
</a>
</li>
<li>
<a href="#" class="trans" id="pro">
<span>Profile</span>
</a>
</li>
<li>
<a href="index.html" class="trans" id="pro">
<span>Website</span>
</a>
</li>
<li>
<a href="#" id="signout" class="trans">
<span>Sign Out</span>
</a>
</li>
</ul>
</nav>
<iframe id="cont" src="blogcreate.html" frameborder="0">
</iframe>
<script src="js/actions.js"></script>
<!-- header -->