Skip to content

Commit 15e4f5e

Browse files
authoredMar 23, 2024··
Merge pull request #16 from WEHack-UTD2-0/kelly
refactor: Password color changes
2 parents 39f9d21 + e725d3a commit 15e4f5e

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed
 

‎pages/auth/index.tsx

+9-3
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ export default function AuthPage() {
140140
<div style={{ color: '#FFE9D7' }}>
141141
<input
142142
className="mx-1 text-yellow-250"
143+
style={{ color: '#FFE9D7' }}
143144
type="checkbox"
144145
onClick={() => showPassword('passwordInputLg')}
145146
/>
@@ -180,7 +181,9 @@ export default function AuthPage() {
180181
}}
181182
/>
182183
</div>
183-
<h1 className="text-3xl text-yellow-250">Reset Password</h1>
184+
<h1 className="text-3xl text-yellow-250" style={{ color: '#FFE9D7' }}>
185+
Reset Password
186+
</h1>
184187
<div className="w-[24rem]">
185188
<input
186189
className="text-yellow-250 w-full rounded-lg p-2 border-[1px] border-gray-500 mt-8 mb-4"
@@ -190,7 +193,8 @@ export default function AuthPage() {
190193
placeholder="Email"
191194
></input>
192195
<button
193-
className="w-[24rem] px-4 py-2 rounded-md shadow-md bg-yellow-250 hover:shadow-lg hover:bg-green-100"
196+
style={{ color: '#FFE9D7' }}
197+
className="w-[24rem] px-4 py-2 rounded-md shadow-md bg-green-300 hover:shadow-lg hover:bg-green-100"
194198
onClick={() => {
195199
sendResetEmail();
196200
setErrorMsg('');
@@ -319,7 +323,9 @@ export default function AuthPage() {
319323
}}
320324
/>
321325
</div>
322-
<h1 className="text-3xl font-black">Reset Password</h1>
326+
<h1 className="text-3xl font-black" style={{ color: '#FFE9D7' }}>
327+
Reset Password
328+
</h1>
323329
<div className="w-full">
324330
<input
325331
className="w-full rounded-lg p-2 border-[1px] border-gray-500 my-4"

0 commit comments

Comments
 (0)
Please sign in to comment.