-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- create registration-template [Delivers #166840878]
- Loading branch information
1 parent
d2cd98b
commit 55fc410
Showing
7 changed files
with
40 additions
and
1 deletion.
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,18 @@ | ||
.form-card{ | ||
background: grey; | ||
height:100vh; | ||
} | ||
.bg-color{ | ||
background: #3DBFB7; | ||
} | ||
.height{ | ||
height: 80%; | ||
} | ||
|
||
.auth-bg { | ||
background-image: url('../../assets/images/auth-bg.png'); | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
/* height:632px; */ | ||
} |
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,14 @@ | ||
import React from 'react'; | ||
import './index.css'; | ||
|
||
export default function UserRegidtration() { | ||
return ( | ||
<div className="flex justify-center items-center bg-gray-200 h-screen"> | ||
<div className="md:flex max-w-lg w-7/12 bg-color height items-center auth-bg hidden md:block rounded-l-lg "> | ||
<p className="px-5 text-center text-white text-3xl"> | ||
Welcome, Signup to share, recomend and bookmark | ||
</p> | ||
</div> | ||
</div> | ||
); | ||
} |
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