-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/site state and signup update (#265)
* #262: added new site state - Partial Maintenance * #262: updated mock resource data to cover all site states * #259: updated sign up step 1 wording * #259: added the new sign up page for non-institutional idp users * #259: updated the wording on new sign-up page * #258: moved generate-key and upload-key components as child of key tabs * #258: lifted the key limit check to parent KeyTabs component * #258: updated style and wording * #258: lifted key type as props passed to upload/generate key component * #258: store key type after key generate/upload and page refresh * #258: fixed local storage name issue * #258: fixed the bug of not displaying generate/upload options when no key exists * #258: fixed upload key parameter issue * #179öĀ: wrapped up updates from another branch * #246: pass time data to Calendar as Date format instead of string * #264: changed the default tab of project as Basic Information * #179: updated delete modal to include id property * #246: moved lease end time and project to detail form to save space * #258: wrapped up v1.4.7 updates * #258: fixed an import issue
- Loading branch information
Showing
28 changed files
with
451 additions
and
239 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
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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import React from "react"; | ||
import { default as portalData } from "../../services/portalData.json"; | ||
|
||
const DenyEnrollment = () => { | ||
return ( | ||
<div> | ||
<div> | ||
<p>Dear Experimenter,</p> | ||
<p>FABRIC does not support GitHub, Google, Microsoft or ORCID as an identity provider for enrollment without a prior agreement.</p> | ||
<p> | ||
If your institution is not listed among the Identity Providers supported by CILogon or you are not able to use it for some other reason, you may initiate a petition to be added via a non-institutional Identity Provider, such as GitHub, Google, Microsoft or ORCID. Please note that such petitions undergo manual review - we may request additional information prior to granting access. | ||
</p> | ||
</div> | ||
<div className="text-center"> | ||
<div className="alert alert-warning" role="alert"> | ||
<i className="fa fa-exclamation-triangle mr-2"></i> Please note that the FABRIC team works standard business hours in US Eastern timezone. We generally do not handle requests on weekends or during holidays. | ||
</div> | ||
<a href={portalData.jiraLinks["initiateAccountPetition"]}> | ||
<button | ||
className="btn btn-primary mt-2" | ||
> | ||
Initiate Petition | ||
</button> | ||
</a> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default DenyEnrollment; |
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
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
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
Oops, something went wrong.