|
|
@@ -2,11 +2,11 @@
|
|
2
|
2
|
<div>
|
|
3
|
3
|
<nav class="navbar navbar-default">
|
|
4
|
4
|
<div class="container-fluid">
|
|
|
5
|
+ <img class="navbar-left logo" src="./assets/PotentialEnergy.png">
|
|
5
|
6
|
<div class="navbar-header">
|
|
6
|
|
- <a class="navbar-brand" href="#">Potential Energy</a>
|
|
7
|
7
|
<button
|
|
8
|
8
|
id="qsLoginBtn"
|
|
9
|
|
- class="btn btn-primary btn-margin"
|
|
|
9
|
+ class="btn btn-primary navbar-fixed-bottom"
|
|
10
|
10
|
v-if="!authenticated"
|
|
11
|
11
|
@click="login()">
|
|
12
|
12
|
Log In
|
|
|
@@ -14,7 +14,7 @@
|
|
14
|
14
|
|
|
15
|
15
|
<button
|
|
16
|
16
|
id="qsLogoutBtn"
|
|
17
|
|
- class="btn btn-primary btn-margin"
|
|
|
17
|
+ class="btn btn-primary btn-success btn-margin"
|
|
18
|
18
|
v-if="authenticated"
|
|
19
|
19
|
@click="logout()">
|
|
20
|
20
|
Log Out
|
|
|
@@ -59,8 +59,13 @@ export default {
|
|
59
|
59
|
|
|
60
|
60
|
<style>
|
|
61
|
61
|
@import '../node_modules/bootstrap/dist/css/bootstrap.css';
|
|
62
|
|
-
|
|
|
62
|
+.logo {
|
|
|
63
|
+ height: 100px;
|
|
|
64
|
+ width: 100px;
|
|
|
65
|
+}
|
|
63
|
66
|
.btn-margin {
|
|
64
|
|
- margin-top: 7px
|
|
|
67
|
+ margin-top: 30px;
|
|
|
68
|
+ margin-left: 10px;
|
|
65
|
69
|
}
|
|
|
70
|
+
|
|
66
|
71
|
</style>
|