diff --git a/class_registration_app/src/components/LoginPage.vue b/class_registration_app/src/components/LoginPage.vue
index ec1e2dd..615e915 100644
--- a/class_registration_app/src/components/LoginPage.vue
+++ b/class_registration_app/src/components/LoginPage.vue
@@ -1,5 +1,4 @@
-
-
-
-
-
\ No newline at end of file
+
diff --git a/class_registration_app/src/components/StartUp.vue b/class_registration_app/src/components/StartUp.vue
index 4ce5109..ba47484 100644
--- a/class_registration_app/src/components/StartUp.vue
+++ b/class_registration_app/src/components/StartUp.vue
@@ -1,7 +1,17 @@
@@ -9,7 +19,11 @@ import AppVue from '@/App.vue';
-
+
+
+
+
+
@@ -21,14 +35,14 @@ import AppVue from '@/App.vue';
-
-
-
-
+
+
+
+
Forget your login?
@@ -266,10 +280,11 @@ footer {
font-size: 1.5vw;
}
-
+
@keyframes change{
0%
{
+ /*Must include both jpegs to load the one before and prevent flicker*/
background-image: url("../assets/Aerial131009a125.jpeg"), url("../assets/winter2.jpeg");
}
20%
@@ -292,6 +307,30 @@ footer {
{
background-image: url("../assets/Aerial131009a125.jpeg");
}
-}
+ }
+
+ .login-div{
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -43%);
+ height: 65vh;
+ width: 30vw;
+ background-color: white;
+ z-index: 9999;
+ border-radius: 99px;
+ animation: popup .5s linear;
+ border: solid 2px black;
+ }
+
+ @keyframes popup {
+ from{
+ opacity: 0%;
+ }
+
+ to{
+ opacity:100%;
+ }
+ }
\ No newline at end of file