From 294849131c1bc6f74db204f325022a57feab7bfb Mon Sep 17 00:00:00 2001 From: Luke Glasscock <luke.glasscock@ascellatech.com> Date: Thu, 14 Jan 2021 16:51:11 -0700 Subject: [PATCH] Add button for container registration --- src/views/IronBank.vue | 32 ++++++++++++++++++++++---------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/src/views/IronBank.vue b/src/views/IronBank.vue index 5a463e55..ad8c0bcb 100644 --- a/src/views/IronBank.vue +++ b/src/views/IronBank.vue @@ -201,20 +201,32 @@ <p> Before contributing a container, you should first make sure that the application you are contributing is not already in the Iron - Bank. If the container image does not exist, requests can be - made with the Container Hardening Team on Repo One for - accreditation. + Bank. + <span style="font-weight:600">Launch Repo One</span> to + research. If the container image does not exist, requests can be + made with the Iron Bank Container Hardening team for + accreditation. Please complete the + <span style="font-weight:600">Container Hardening Request</span + >. </p> </div> </div> <v-btn - class="my-6 mx-auto" + class="my-3 mx-10" color="primary" href="https://repo1.dso.mil/dsop" target="_blank" > Launch Repo One </v-btn> + <v-btn + class="my-3 mx-10" + color="primary" + href="https://forms.gle/jchZ9cbywsLoTnCY8" + target="_blank" + > + Container Hardening Request + </v-btn> </v-container> </v-container> @@ -433,7 +445,7 @@ export default { DownloadButton, IBCollapsiblesPipeline, IBCollapsiblesDownloadSteps, - Tooltip + Tooltip, }, methods: { showImg(index) { @@ -445,7 +457,7 @@ export default { }, getImageUrl(filename) { return require(`@/assets/images/${filename}`); - } + }, }, data: function() { return { @@ -460,11 +472,11 @@ export default { imgs: [ require("@/assets/images/iron-bank/IBVS_diagram.png"), require("@/assets/images/iron-bank/IBVS_registry1_process.png"), - require("@/assets/images/iron-bank/IBVS_pipeline.png") - ] - } + require("@/assets/images/iron-bank/IBVS_pipeline.png"), + ], + }, }; - } + }, }; </script> -- GitLab