Skip to content

Commit

Permalink
add Login.tsx page
Browse files Browse the repository at this point in the history
  • Loading branch information
samj committed Oct 2, 2024
1 parent e4e28f0 commit d78a59b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/Login.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState } from 'react';
import logo from './assets/kwaai.png';
import logo from './assets/paios.png';
import './Login.css';
import { useLogin, useNotify } from "react-admin"

Expand Down Expand Up @@ -46,7 +46,7 @@ const Login: React.FC = () => {
return (
<div className="auth-container">
<h1 className="paios-heading">pAI-OS</h1>
<img src={logo} alt="Kwaai Logo" className="logo" />
<img src={logo} alt="pAI-OS Logo" className="logo" />
<h2>{isRegistering ? "Register" : "Login"}</h2>
<form onSubmit={handleUser}>
<input type="email" id="email" placeholder="Email" className="input-field" onChange={handleChange} value={email} />
Expand Down

0 comments on commit d78a59b

Please sign in to comment.