Skip to content

Commit d7e3e76

Browse files
ch():change site names
1 parent 03f4c98 commit d7e3e76

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

src/assets/styles/base.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ $font-family:"times, roboto, arial, 'Times New Roman'";
1212
}
1313

1414
@mixin vertical-center {
15+
.embedded {
16+
button {
17+
background-color: aqua;
18+
}
19+
}
1520
margin: 0;
1621
position: absolute;
1722
top: 50%;

src/containers/Login.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const Login =(props) => {
7777
<Text label="Login" className="txt txt--fontSize__large" />
7878
</div>
7979
<div className="in-small">
80-
<h2>REMS Login</h2>
80+
<h2>Login</h2>
8181
</div>
8282
<div className="signup--form--rows">
8383
<div className="signup--form--row">
@@ -90,7 +90,7 @@ const Login =(props) => {
9090
<Button name="login" label="Login" handleClick={handleClick}/>
9191
</div>
9292
<div className="signup--form--footer login--form--footer">
93-
<Text label="New to REMS ? Create account " linkLabel="here" linkAddress="/signup/student" className="txt" exception={true} />
93+
<Text label="New to Harbor Institute ? Create account " linkLabel="here" linkAddress="/signup/student" className="txt" exception={true} />
9494
</div>
9595
</div>
9696
</div>

src/containers/SignupInstructor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const Signup =(props) => {
8989
<AlertComponent isError={errorMsg ? true : false} message={errorMsg} />
9090
<AlertComponent isSuccess={successMsg ? true : false } message={successMsg}/>
9191
<div className="in-small">
92-
<h2>REMS Registration</h2>
92+
<h2>Registration</h2>
9393
</div>
9494
<div className="signup--form--title">
9595
<Text label="Registration" className="txt txt--fontSize__large" />
@@ -122,7 +122,7 @@ const Signup =(props) => {
122122
className="input__large"
123123
handleChange={handleChange}
124124
/>
125-
<InputField type="checkbox" name="termsAgreement" label="I agree to REMS terms and conditions." className="signup--form--checkbox input--checkbox" handleChange={handleChange} />
125+
<InputField type="checkbox" name="termsAgreement" label="I agree to Harbor LMS terms and conditions." className="signup--form--checkbox input--checkbox" handleChange={handleChange} />
126126
<div className="signup--form--btn">
127127
<Button name="Register" label="Register" handleClick={handleClick}/>
128128
</div>

src/containers/SignupStudent.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const getStudentUniqueNumber = async () => {
112112
<AlertComponent isError={errorMsg ? true : false} message={errorMsg} />
113113
<AlertComponent isSuccess={successMsg ? true : false } message={successMsg}/>
114114
<div className="in-small">
115-
<h2>REMS Registration</h2>
115+
<h2>Registration</h2>
116116
</div>
117117
<div className="signup--form--title">
118118
<Text label="Registration" className="txt txt--fontSize__large" />
@@ -137,7 +137,7 @@ const getStudentUniqueNumber = async () => {
137137
<InputField type="password" id="password" name="password" placeholder="password" className="input__medium" required={true} handleChange={handleChange} />
138138
<InputField type="password" id="confirmPassword" name="confirmPassword" placeholder="Confirm password" className="input__medium" required={true} handleChange={handleChange} />
139139
</div>
140-
<InputField type="checkbox" name="termsAgreement" label="I agree to REMS terms and conditions." className="signup--form--checkbox input--checkbox" handleChange={handleChange} />
140+
<InputField type="checkbox" name="termsAgreement" label="I agree to Harbor LMS terms and conditions." className="signup--form--checkbox input--checkbox" handleChange={handleChange} />
141141
<div className="signup--form--btn">
142142
<Button name="Register" label="Register" handleClick={handleClick}/>
143143
</div>

0 commit comments

Comments
 (0)