initial release testing
This commit is contained in:
25
app/login/page.tsx
Normal file
25
app/login/page.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user