Skip to content

Commit b1acefd

Browse files
committed
fixed reg page to match log-in page
1 parent 67094ed commit b1acefd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Components/Pages/RegisterPage/RegisterForm.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export class RegisterForm extends React.Component {
77
render(){
88
return(
99
<>
10-
<section className='regiser'>
10+
<section className='bg-purple-400 p-6'>
1111
<div id="registerform">
1212
<FormHeader title="Register" />
1313
<Form />
@@ -36,8 +36,8 @@ const Form = props => (
3636
);
3737

3838
const FormButton = props => (
39-
<div id="button" class="row">
40-
<button>{props.title}</button>
39+
<div id="button" className="flex justify-center items-center my-4">
40+
<button className="bg-purple-500 px-2 py-1 text-white rounded-full w-48 text-white">{props.title}</button>
4141
</div>
4242
);
4343

@@ -49,7 +49,7 @@ const FormInput = props => (
4949
);
5050

5151
const LoginButton = props => (
52-
<div class="switchText">
52+
<div className="switchText text-center text-gray-500">
5353
Already have an account?
5454
<Link to="/">
5555
Click here to log in.

0 commit comments

Comments
 (0)