Skip to content

Commit

Permalink
signup styling
Browse files Browse the repository at this point in the history
  • Loading branch information
pantheredeye committed Dec 13, 2024
1 parent 13bb2e3 commit d51bfe5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion web/src/pages/HomePage/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const HomePage = () => {
}
className="mt-8 rounded-xl bg-indigo-600 px-6 py-3 text-lg font-medium text-white shadow-lg hover:bg-indigo-500 focus:outline-none"
>
Contact Us
Email Us
</button>
</div>
</div>
Expand Down
10 changes: 5 additions & 5 deletions web/src/pages/SignupPage/SignupPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const SignupPage = () => {
</h2>
</div>
<div className="mt-10 sm:mx-auto sm:w-full sm:max-w-[480px]">
<div className="bg-white px-6 py-12 shadow sm:rounded-lg sm:px-12">
<div className="mx-auto max-w-7xl rounded-xl bg-gray-800 p-2 sm:p-8 shadow-2xl">
<Form
onSubmit={onSubmit}
className="space-y-6"
Expand All @@ -71,7 +71,7 @@ const SignupPage = () => {
<div>
<Label
name="email"
className="block text-sm font-medium leading-6 text-gray-900"
className="block text-sm font-medium text-gray-200"
errorClassName="block text-sm font-medium leading-6 text-red-600"
>
Email address
Expand All @@ -82,7 +82,7 @@ const SignupPage = () => {
ref={emailRef}
autoComplete="email"
required
className="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"
className="block w-full rounded-xl border border-gray-700 bg-gray-800 py-1.5 text-gray-200 placeholder-gray-500 focus:border-indigo-500 focus:ring-indigo-500"
errorClassName="block w-full rounded-md border-0 py-1.5 text-red-600 shadow-sm ring-1 ring-inset ring-red-300 placeholder:text-red-400 focus:ring-2 focus:ring-inset focus:ring-red-600 sm:text-sm sm:leading-6"
validation={{
required: {
Expand All @@ -100,7 +100,7 @@ const SignupPage = () => {
<div>
<Label
name="password"
className="block text-sm font-medium leading-6 text-gray-900"
className="block text-sm font-medium text-gray-200"
errorClassName="block text-sm font-medium leading-6 text-red-600"
>
Password
Expand All @@ -110,7 +110,7 @@ const SignupPage = () => {
name="password"
autoComplete="current-password"
required
className="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"
className="block w-full rounded-xl border border-gray-700 bg-gray-800 py-1.5 text-gray-200 placeholder-gray-500 focus:border-indigo-500 focus:ring-indigo-500"
errorClassName="block w-full rounded-md border-0 py-1.5 text-red-600 shadow-sm ring-1 ring-inset ring-red-300 placeholder:text-red-400 focus:ring-2 focus:ring-inset focus:ring-red-600 sm:text-sm sm:leading-6"
validation={{
required: {
Expand Down

0 comments on commit d51bfe5

Please sign in to comment.