github.com/quickfeed/quickfeed@v0.0.0-20240507093252-ed8ca812a09c/public/src/components/profile/SignupText.tsx (about) 1 import React from "react" 2 3 4 /** SignupText is used to display an error message if the user information is incomplete. */ 5 const SignupText = (): JSX.Element => { 6 return ( 7 <blockquote className="blockquote card-body" style={{ color: "red" }}> 8 <p> 9 Fill in the form below to complete signup. 10 </p> 11 <p> 12 Use your <i>real name</i> as it appears on Canvas. 13 </p> 14 <p> 15 If your name does not match any names on Canvas, you will not be granted access. 16 </p> 17 </blockquote> 18 ) 19 } 20 21 export default SignupText