26 lines
945 B
TypeScript
26 lines
945 B
TypeScript
import { loginAction } from "@/lib/actions";
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<div className="grid">
|
|
<section className="panel" style={{ maxWidth: 520 }}>
|
|
<h2 className="section-title">Sign In</h2>
|
|
<p className="section-copy">Use the bootstrap admin credentials configured through environment variables.</p>
|
|
<form action={loginAction} className="form-grid">
|
|
<div className="form-row">
|
|
<label htmlFor="email">Email</label>
|
|
<input className="input" id="email" name="email" type="email" required />
|
|
</div>
|
|
<div className="form-row">
|
|
<label htmlFor="password">Password</label>
|
|
<input className="input" id="password" name="password" type="password" required />
|
|
</div>
|
|
<button className="button" type="submit">
|
|
Sign In
|
|
</button>
|
|
</form>
|
|
</section>
|
|
</div>
|
|
);
|
|
}
|