add subtitle to the login modal with instructions on how to get invited
This commit is contained in:
parent
c660771225
commit
92c8403157
1 changed files with 3 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
import { login } from '@/auth/authService';
|
import { login } from '@/auth/authService';
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
|
import { DialogDescription } from '@radix-ui/react-dialog';
|
||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
import { Dialog, DialogContent, DialogFooter, DialogHeader, DialogTitle } from './ui/dialog';
|
import { Dialog, DialogContent, DialogFooter, DialogHeader, DialogTitle } from './ui/dialog';
|
||||||
|
|
||||||
|
|
@ -19,6 +20,8 @@ const Modal: React.FC<ModalProps> = ({
|
||||||
<DialogContent className="sm:max-w-[425px]">
|
<DialogContent className="sm:max-w-[425px]">
|
||||||
<DialogHeader>
|
<DialogHeader>
|
||||||
<DialogTitle>Login to Wrongmove</DialogTitle>
|
<DialogTitle>Login to Wrongmove</DialogTitle>
|
||||||
|
<DialogDescription>(We are currently in closed beta; ask Viktor to send you an invitation)</DialogDescription>
|
||||||
|
|
||||||
</DialogHeader>
|
</DialogHeader>
|
||||||
<DialogFooter>
|
<DialogFooter>
|
||||||
{isLoading && (
|
{isLoading && (
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue