Skip to content

Commit

Permalink
[UX][Web][SIMS #1450] UI Content for Institution - Login (#1459)
Browse files Browse the repository at this point in the history
Updating content for institution login page.
  • Loading branch information
hellolynn-tbtb authored Oct 17, 2022
1 parent 92a8bd9 commit b006db2
Showing 1 changed file with 18 additions and 36 deletions.
54 changes: 18 additions & 36 deletions sources/packages/web/src/views/institution/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,24 @@
Welcome to StudentAid BC
</h1>
<p class="mb-5">
Login or sign up here to manage your institution account.
Manage your institution account using your Business or Basic BCeID
User ID. Learn how to setup and access your account
<a
class="primary-color"
rel="noopener"
target="_blank"
href="https://studentaidbc.ca/policy-and-procedures/partner-portal-information"
>here</a
>.
</p>
<content-group>
<v-row>
<v-col>
<h3 class="category-header-medium primary-color">Login</h3>
<p class="sign-in-description">
For returning users—login using your BCeID.
</p>
<v-btn
color="primary"
@click="login"
prepend-icon="fa:fa fa-user"
>
Login with BCeID
</v-btn>
</v-col>
<v-col
><h3 class="category-header-medium primary-color">Sign up</h3>
<p class="sign-in-description">
For new users—sign up using your BCeID.
</p>
<v-btn
color="primary"
@click="login"
prepend-icon="fa:fa fa-user-plus"
>
Sign Up with BCeID
</v-btn></v-col
>
</v-row>
<h3 class="category-header-medium primary-color">
Login or register
</h3>
<p>No account? Please register through the BCeID website below.</p>
<v-btn color="primary" @click="login" prepend-icon="fa:fa fa-user">
Login / Register with BCeID
</v-btn>
</content-group>
</v-col>
<v-col
Expand Down Expand Up @@ -96,9 +83,9 @@ export default {
case props.showBasicBCeIDMessage:
return "No such Business account has been found with BCeID. Please login with your Business BCeId.";
case props.showDisabledUserMessage:
return "Disabled user - you don't have access to the system. Please contact Administrator for more information.";
return "Your access was disabled. Please contact your institution's admin to enable your access.";
case props.showUnknownUserMessage:
return "The user was validated successfully but is not currently allowed to have access to this application. Please contact the Administrator for more information.";
return "Your BCeID User ID is not authorized to access our system yet. If you are using a Basic BCeID User ID, please contact [email protected] for authorization. If you are using a Business BCeID User ID, please contact your institution's admin to add you as a new user. For newly approved Business BCeID accounts, please fully complete the steps to activate your Business BCeID first.";
default:
return false;
}
Expand All @@ -107,8 +94,3 @@ export default {
},
};
</script>
<style scoped>
.sign-in-description {
max-width: 180px;
}
</style>

0 comments on commit b006db2

Please sign in to comment.