-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Updating content for institution login page.
- Loading branch information
1 parent
92a8bd9
commit b006db2
Showing
1 changed file
with
18 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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; | ||
} | ||
|
@@ -107,8 +94,3 @@ export default { | |
}, | ||
}; | ||
</script> | ||
<style scoped> | ||
.sign-in-description { | ||
max-width: 180px; | ||
} | ||
</style> |