forked from React-Group/interstellar_ai
Merge pull request 'Added some fonts' (#43) from sageTheDm/interstellar_ai:main into main
Reviewed-on: https://interstellardevelopment.org/code/code/React-Group/interstellar_ai/pulls/43
This commit is contained in:
commit
ce8c3b8c87
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);
|
||||
|
@ -123,6 +124,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