// Credential sign-in (illustrative)
import { signIn } from "next-auth/react";
async function onSubmit(email: string, password: string) {
return signIn("credentials", {
email,
password,
redirect: false,
});
}
Pepper runs static analysis, secrets detection, and policy checks before code ships. Use only on code you are authorized to analyze.