chore: move "resend verification" button

This commit is contained in:
Paul Makles 2022-06-12 12:16:15 +01:00
parent bdc527ebbe
commit 8103cc03cf

View file

@ -222,20 +222,12 @@ export const Form = observer(({ page, callback }: Props) => {
</Button> </Button>
</form> </form>
{page === "create" && ( {page === "create" && (
<>
<span className={styles.create}> <span className={styles.create}>
<Text id="login.existing" />{" "} <Text id="login.existing" />{" "}
<Link to="/login"> <Link to="/login">
<Text id="login.title" /> <Text id="login.title" />
</Link> </Link>
</span> </span>
<span className={styles.create}>
<Text id="login.missing_verification" />{" "}
<Link to="/login/resend">
<Text id="login.resend" />
</Link>
</span>
</>
)} )}
{page === "login" && ( {page === "login" && (
<> <>
@ -251,6 +243,12 @@ export const Form = observer(({ page, callback }: Props) => {
<Text id="login.reset" /> <Text id="login.reset" />
</Link> </Link>
</span> </span>
<span className={styles.create}>
<Text id="login.missing_verification" />{" "}
<Link to="/login/resend">
<Text id="login.resend" />
</Link>
</span>
{import.meta.env.VITE_API_URL && {import.meta.env.VITE_API_URL &&
import.meta.env.VITE_API_URL != import.meta.env.VITE_API_URL !=
"https://api.revolt.chat" && ( "https://api.revolt.chat" && (