forked from React-Group/interstellar_ai
Added some fonts
This commit is contained in:
parent
81cff1d68b
commit
18be0513a1
333 changed files with 2609 additions and 11 deletions
|
@ -11,14 +11,15 @@ const Login: React.FC = () => {
|
|||
// Credentials state
|
||||
const [email, setEmail] = useState('');
|
||||
const [password, setPassword] = useState('');
|
||||
const [accountName, setAccountName] = useState('Pluto'); // Set the account name
|
||||
const [accountName, setAccountName] = useState(''); // Set the account name
|
||||
const [newAccountEmail, setNewAccountEmail] = useState('');
|
||||
const [newAccountPassword, setNewAccountPassword] = useState('');
|
||||
const [newAccountName, setNewAccountName] = useState('');
|
||||
|
||||
// Fixed credentials
|
||||
const fixedEmail = 'pluto@imareal.planet';
|
||||
const fixedPassword = 'fuckTheSun1234';
|
||||
const fixedAccount = 'Pluto';
|
||||
const fixedEmail = '';
|
||||
const fixedPassword = '';
|
||||
const fixedAccount = '';
|
||||
|
||||
// Function to toggle the login popup
|
||||
const toggleLoginPopup = () => setShowLoginPopup(!showLoginPopup);
|
||||
|
@ -124,6 +125,16 @@ const Login: React.FC = () => {
|
|||
/>
|
||||
</div>
|
||||
|
||||
{/* New Account Name Input */}
|
||||
<div>
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Name"
|
||||
value={newAccountName}
|
||||
onChange={(e) => setAccountName(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* New Account Password Input */}
|
||||
<div>
|
||||
<input
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue