mirror of
https://github.com/SkalaraAI/beta.git
synced 2025-04-09 15:00:20 -04:00
13 lines
366 B
TypeScript
13 lines
366 B
TypeScript
export default function Auth() {
|
|
return (
|
|
<form action="/auth/login" method="post">
|
|
<label htmlFor="email">Email</label>
|
|
<input name="email" />
|
|
<label htmlFor="password">Password</label>
|
|
<input type="password" name="password" />
|
|
<button>Sign In</button>
|
|
<button formAction="/auth/signup">Sign Up</button>
|
|
</form>
|
|
);
|
|
}
|