chore: update signup link

This commit is contained in:
Timur Ercan
2023-05-28 06:16:48 +02:00
parent eb18a7e11c
commit b2b499f397
4 changed files with 10 additions and 8 deletions

View File

@@ -111,7 +111,7 @@ export default function Login(props: any) {
</div> </div>
<div className="flex items-center justify-between"> <div className="flex items-center justify-between">
<div className="text-sm"> <div className="text-sm">
<a href="#" className="text-gray-500 hover:text-neon-700 font-medium"> <a href="#" className="hover:text-neon-700 font-medium text-gray-500">
Forgot your password? Forgot your password?
</a> </a>
</div> </div>
@@ -123,7 +123,7 @@ export default function Login(props: any) {
className="group relative flex w-full"> className="group relative flex w-full">
<span className="absolute inset-y-0 left-0 flex items-center pl-3"> <span className="absolute inset-y-0 left-0 flex items-center pl-3">
<LockClosedIcon <LockClosedIcon
className="text-neon-700 group-hover:text-neon-dark-700 h-5 w-5 disabled:disabled:bg-gray-600 disabled:group-hover:bg-gray-600 duration-200" className="text-neon-700 group-hover:text-neon-dark-700 h-5 w-5 duration-200 disabled:disabled:bg-gray-600 disabled:group-hover:bg-gray-600"
aria-hidden="true" aria-hidden="true"
/> />
</span> </span>
@@ -141,7 +141,9 @@ export default function Login(props: any) {
{props.allowSignup ? ( {props.allowSignup ? (
<p className="mt-2 text-center text-sm text-gray-600"> <p className="mt-2 text-center text-sm text-gray-600">
Are you new here?{" "} Are you new here?{" "}
<Link href="/signup" className="text-gray-500 hover:text-neon-700 duration-200 font-medium"> <Link
href="/signup"
className="hover:text-neon-700 font-medium text-gray-500 duration-200">
Create a new Account Create a new Account
</Link> </Link>
</p> </p>
@@ -151,7 +153,7 @@ export default function Login(props: any) {
<Link <Link
href="https://documenso.com" href="https://documenso.com"
className="text-neon hover:text-neon font-medium"> className="text-neon hover:text-neon font-medium">
Hosted Documenso will be available soon Hosted Documenso is here!
</Link> </Link>
</p> </p>
)} )}

View File

@@ -55,7 +55,7 @@ const Signed: NextPageWithLayout = (props: any) => {
<p className="mt-4 text-center text-sm text-gray-600"> <p className="mt-4 text-center text-sm text-gray-600">
Want to send slick signing links like this one?{" "} Want to send slick signing links like this one?{" "}
<Link href="https://documenso.com" className="text-neon hover:text-neon font-medium"> <Link href="https://documenso.com" className="text-neon hover:text-neon font-medium">
Hosted Documenso is coming soon Hosted Documenso is here!
</Link> </Link>
</p> </p>
</> </>

View File

@@ -17,7 +17,7 @@ export const signingCompleteTemplate = (message: string) => {
A copy of the signed document has been attached to this email. A copy of the signed document has been attached to this email.
</p> </p>
<p style="margin-top: 14px;"> <p style="margin-top: 14px;">
<small>Like Documenso? <a href="https://documenso.com">Hosted Documenso is coming soon™</a>.</small> <small>Like Documenso? <a href="https://documenso.com">Hosted Documenso is here!</a>.</small>
</p>`; </p>`;
const html = baseEmailTemplate(message, customContent); const html = baseEmailTemplate(message, customContent);

View File

@@ -21,7 +21,7 @@ export const signingRequestTemplate = (
<small>If you have questions about this document, you should ask ${user.name}.</small> <small>If you have questions about this document, you should ask ${user.name}.</small>
<hr size="1" style="height:1px;border:none;color:#e0e0e0;background-color:#e0e0e0"> <hr size="1" style="height:1px;border:none;color:#e0e0e0;background-color:#e0e0e0">
<p style="margin-top: 14px;"> <p style="margin-top: 14px;">
<small>Want to send you own signing links? <a href="https://documenso.com">Hosted Documenso is coming soon™</a>.</small> <small>Want to send you own signing links? <a href="https://documenso.com">Hosted Documenso is here!</a>.</small>
</p>`; </p>`;
const html = baseEmailTemplate(message, customContent); const html = baseEmailTemplate(message, customContent);