summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/dashboard/landing.html
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-01-02 17:54:24 -0500
committerParker Berberian <pberberian@iol.unh.edu>2019-01-03 15:04:33 -0500
commitc0831a839d23240f844dff6dd05b09521c30bfe9 (patch)
tree75348d154095dbf5402b4f417872ba55f1507362 /dashboard/src/templates/dashboard/landing.html
parent5d24f164eb263239e66b3fb99782ec555523182d (diff)
Changed Button style class to btn-primary
btn-primary has a handful of advantages over btn-default, including consistency across browsers and correctly styling non-button html tags p.s. vim is best Change-Id: I6e55a75a9fd48d64496fd83f43a7856af0c04cc0 Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'dashboard/src/templates/dashboard/landing.html')
-rw-r--r--dashboard/src/templates/dashboard/landing.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/dashboard/src/templates/dashboard/landing.html b/dashboard/src/templates/dashboard/landing.html
index b1eec86..84b060f 100644
--- a/dashboard/src/templates/dashboard/landing.html
+++ b/dashboard/src/templates/dashboard/landing.html
@@ -29,12 +29,12 @@
}
</style>
<div class='wf_create_div'>
-<button class="wf_create btn" onclick="cwf(0)">Create a Booking</button>
-<button class="wf_create btn" onclick="cwf(1)">Create a Pod</button>
-<button class="wf_create btn" onclick="cwf(2)">Configure a Pod</button>
-<button class="wf_create btn" onclick="cwf(3)">Create a Snapshot</button>
+<button class="wf_create btn btn-primary" onclick="cwf(0)">Create a Booking</button>
+<button class="wf_create btn btn-primary" onclick="cwf(1)">Create a Pod</button>
+<button class="wf_create btn btn-primary" onclick="cwf(2)">Configure a Pod</button>
+<button class="wf_create btn btn-primary" onclick="cwf(3)">Create a Snapshot</button>
{% if manager == True %}
-<button class="wf_continue btn" onclick="continue_wf()">Finish Unfinished Business</button>
+<button class="wf_continue btn btn-primary" onclick="continue_wf()">Finish Unfinished Business</button>
{% endif %}
</div>