refactor: unified transaction url.
feat: modify admin pages.
This commit is contained in:
@@ -12,9 +12,9 @@ export default function UserConfiguration() {
|
||||
const [showPreviewModal, setShowPreviewModal] = useState(false);
|
||||
const [confirmedPreview, setConfirmedPreview] = useState(false);
|
||||
const [ibEnabled, setIbEnabled] = useState(false);
|
||||
const [ibAccess,setIbAccess] =useState<"read"|"transaction"|"">("");
|
||||
const [ibAccess, setIbAccess] = useState<"read" | "transaction" | "">("");
|
||||
const [mbEnabled, setMbEnabled] = useState(false);
|
||||
const [mbAccess,setMbAccess] =useState<"read"|"transaction"|"">("");
|
||||
const [mbAccess, setMbAccess] = useState<"read" | "transaction" | "">("");
|
||||
const isValidated = !!userDetails;
|
||||
const canSubmit = isValidated && !!savingsAccount && confirmedPreview;
|
||||
|
||||
@@ -154,64 +154,85 @@ export default function UserConfiguration() {
|
||||
</Box>
|
||||
|
||||
<Divider label='Rights' size="xs" />
|
||||
<Stack>
|
||||
<Group grow>
|
||||
<Box>
|
||||
<Text fw={500}>Internet Banking</Text>
|
||||
<Group mt="xs">
|
||||
<Checkbox
|
||||
label="Enabled"
|
||||
checked={ibEnabled}
|
||||
onChange={(e) => {
|
||||
setIbEnabled(e.currentTarget.checked);
|
||||
if (!e.currentTarget.checked) setIbAccess(""); // reset if disabled
|
||||
}}
|
||||
/>
|
||||
<Checkbox
|
||||
label="Read"
|
||||
disabled={!ibEnabled}
|
||||
checked={ibAccess === "read"}
|
||||
onChange={() => setIbAccess("read")}
|
||||
/>
|
||||
<Checkbox
|
||||
label="Transaction"
|
||||
disabled={!ibEnabled}
|
||||
checked={ibAccess === "transaction"}
|
||||
onChange={() => setIbAccess("transaction")}
|
||||
/>
|
||||
</Group>
|
||||
<Stack gap="sm">
|
||||
{/* Header row */}
|
||||
<Group gap="xl">
|
||||
<Box w={150}>
|
||||
<Text fw={500}>Services</Text>
|
||||
</Box>
|
||||
<Box w={100}>
|
||||
<Text fw={500}>Enable</Text>
|
||||
</Box>
|
||||
<Box w={120}>
|
||||
<Text fw={500}>Transaction</Text>
|
||||
</Box>
|
||||
<Box w={100}>
|
||||
<Text fw={500}>Read</Text>
|
||||
</Box>
|
||||
</Group>
|
||||
|
||||
{/* Mobile Banking */}
|
||||
<Box>
|
||||
<Text fw={500}>Mobile Banking</Text>
|
||||
<Group mt="xs">
|
||||
<Checkbox
|
||||
label="Enabled"
|
||||
checked={mbEnabled}
|
||||
onChange={(e) => {
|
||||
setMbEnabled(e.currentTarget.checked);
|
||||
if (!e.currentTarget.checked) setMbAccess(""); // reset if disabled
|
||||
}}
|
||||
/>
|
||||
<Checkbox
|
||||
label="Read"
|
||||
disabled={!mbEnabled}
|
||||
checked={mbAccess === "read"}
|
||||
onChange={() => setMbAccess("read")}
|
||||
/>
|
||||
<Checkbox
|
||||
label="Transaction"
|
||||
disabled={!mbEnabled}
|
||||
checked={mbAccess === "transaction"}
|
||||
onChange={() => setMbAccess("transaction")}
|
||||
/>
|
||||
</Group>
|
||||
{/* Internet Banking row */}
|
||||
<Group gap="xl" align="center">
|
||||
<Box w={150}>
|
||||
<Text>Internet Banking</Text>
|
||||
</Box>
|
||||
<Box w={100}>
|
||||
<Checkbox
|
||||
checked={ibEnabled}
|
||||
onChange={(e) => {
|
||||
setIbEnabled(e.currentTarget.checked);
|
||||
if (!e.currentTarget.checked) setIbAccess("");
|
||||
}}
|
||||
/>
|
||||
</Box>
|
||||
<Box w={120}>
|
||||
<Checkbox
|
||||
disabled={!ibEnabled}
|
||||
checked={ibAccess === "transaction"}
|
||||
onChange={() => setIbAccess("transaction")}
|
||||
/>
|
||||
</Box>
|
||||
<Box w={100}>
|
||||
<Checkbox
|
||||
disabled={!ibEnabled}
|
||||
checked={ibAccess === "read"}
|
||||
onChange={() => setIbAccess("read")}
|
||||
/>
|
||||
</Box>
|
||||
</Group>
|
||||
|
||||
{/* Mobile Banking row */}
|
||||
<Group gap="xl" align="center">
|
||||
<Box w={150}>
|
||||
<Text>Mobile Banking</Text>
|
||||
</Box>
|
||||
<Box w={100}>
|
||||
<Checkbox
|
||||
checked={mbEnabled}
|
||||
onChange={(e) => {
|
||||
setMbEnabled(e.currentTarget.checked);
|
||||
if (!e.currentTarget.checked) setMbAccess("");
|
||||
}}
|
||||
/>
|
||||
</Box>
|
||||
<Box w={120}>
|
||||
<Checkbox
|
||||
disabled={!mbEnabled}
|
||||
checked={mbAccess === "transaction"}
|
||||
onChange={() => setMbAccess("transaction")}
|
||||
/>
|
||||
</Box>
|
||||
<Box w={100}>
|
||||
<Checkbox
|
||||
disabled={!mbEnabled}
|
||||
checked={mbAccess === "read"}
|
||||
onChange={() => setMbAccess("read")}
|
||||
/>
|
||||
</Box>
|
||||
</Group>
|
||||
</Stack>
|
||||
{accountError && (
|
||||
<Text color="red" size="sm" mt="xs">{accountError}</Text>
|
||||
<Text c="red" size="sm" mt="xs">{accountError}</Text>
|
||||
)}
|
||||
|
||||
</>
|
||||
@@ -229,8 +250,6 @@ export default function UserConfiguration() {
|
||||
>
|
||||
<Stack>
|
||||
<TextInput label="CIF" value={CIF} readOnly disabled />
|
||||
{/* <TextInput label="Internet Banking" value={internetBanking} readOnly disabled />
|
||||
<TextInput label="Mobile Banking" value={mobileBanking} readOnly disabled /> */}
|
||||
</Stack>
|
||||
<Group p="right" mt="md">
|
||||
<Button variant="default" onClick={() => setShowPreviewModal(false)}>Cancel</Button>
|
||||
|
||||
@@ -5,8 +5,8 @@ import { notifications } from "@mantine/notifications";
|
||||
import { Providers } from "@/app/providers";
|
||||
import { useRouter } from "next/navigation";
|
||||
import NextImage from "next/image";
|
||||
import logo from '@/app/image/logo.jpg';
|
||||
import { IconLogout, IconUsers, IconUserScreen } from "@tabler/icons-react";
|
||||
import logo from '@/app/image/logo1.jpg';
|
||||
import { IconLogout, IconPhoneFilled, IconUsers, IconUserScreen } from "@tabler/icons-react";
|
||||
import UserConfiguration from "./UserConfiguration";
|
||||
|
||||
export default function Login() {
|
||||
@@ -82,33 +82,48 @@ export default function Login() {
|
||||
if (authorized) {
|
||||
return (
|
||||
<Providers>
|
||||
<div style={{ backgroundColor: "#f8f9fa", width: "100%", height: "100%", paddingTop: "5%" }}>
|
||||
<div style={{ backgroundColor: "#f8f9fa", width: "100%", height: "100%",}}>
|
||||
{/* Header */}
|
||||
<Box style={{
|
||||
position: 'fixed', width: '100%', height: '12%', top: 0, left: 0, zIndex: 100,
|
||||
display: "flex",
|
||||
justifyContent: "flex-start",
|
||||
background: "linear-gradient(15deg,rgba(2, 163, 85, 1) 55%, rgba(101, 101, 184, 1) 100%)",
|
||||
// border: "1px solid black"
|
||||
}}>
|
||||
<Box
|
||||
style={{
|
||||
height: "60px",
|
||||
position: 'relative',
|
||||
width: '100%',
|
||||
display: "flex",
|
||||
justifyContent: "flex-start",
|
||||
background: "linear-gradient(15deg,rgba(10, 114, 40, 1) 55%, rgba(101, 101, 184, 1) 100%)",
|
||||
}}
|
||||
>
|
||||
<Image
|
||||
fit="cover"
|
||||
src={logo}
|
||||
component={NextImage}
|
||||
alt="ebanking"
|
||||
style={{ width: "40%", height: "100%", objectFit: "contain", marginLeft: 0 }}
|
||||
style={{ width: "100%", height: "100%" }}
|
||||
/>
|
||||
<Title
|
||||
order={2}
|
||||
style={{
|
||||
fontFamily: 'Roboto',
|
||||
position: 'absolute',
|
||||
top: '30%',
|
||||
left: '6%',
|
||||
color: 'White',
|
||||
transition: "opacity 0.5s ease-in-out",
|
||||
}}
|
||||
>
|
||||
THE KANGRA CENTRAL CO-OPERATIVE BANK LTD.
|
||||
</Title>
|
||||
<Text
|
||||
style={{
|
||||
position: 'absolute',
|
||||
top: '50%',
|
||||
left: '64%',
|
||||
left: '80%',
|
||||
color: 'white',
|
||||
textShadow: '1px 1px 2px blue',
|
||||
textShadow: '1px 1px 2px black',
|
||||
}}
|
||||
>
|
||||
{/* <IconBuildingBank/> */}
|
||||
Head Office : Dharmshala, District: Kangra(H.P), Pincode: 176215
|
||||
<IconPhoneFilled size={20} /> Toll Free No : 1800-180-8008
|
||||
</Text>
|
||||
</Box>
|
||||
{/* layout and */}
|
||||
@@ -117,13 +132,13 @@ export default function Login() {
|
||||
<Box
|
||||
style={{
|
||||
width: 220,
|
||||
background:"#ebf5f5ff",
|
||||
background: "#ebf5f5ff",
|
||||
// background: "linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 30%)",
|
||||
padding: '1rem',
|
||||
borderRight: '1px solid #ccc',
|
||||
}}
|
||||
>
|
||||
<Title order={3} style={{textAlign:'center'}}>Admin Portal</Title>
|
||||
<Title order={3} style={{ textAlign: 'center' }}>Admin Portal</Title>
|
||||
<Divider my="xs" label="Menu" labelPosition="center" />
|
||||
<Stack>
|
||||
<Text td="underline" variant="light" style={{ cursor: 'pointer' }} onClick={() => handleClick('UserConf')}>
|
||||
|
||||
@@ -5,7 +5,7 @@ import { notifications } from "@mantine/notifications";
|
||||
import { Providers } from "@/app/providers";
|
||||
import { useRouter } from "next/navigation";
|
||||
import NextImage from "next/image";
|
||||
import logo from '@/app/image/logo.jpg';
|
||||
import logo from '@/app/image/logo1.jpg';
|
||||
import frontPage from '@/app/image/admin_login.jpg';
|
||||
import { generateCaptcha } from '@/app/captcha';
|
||||
|
||||
@@ -93,114 +93,116 @@ export default function Login() {
|
||||
|
||||
return (
|
||||
<Providers>
|
||||
<div style={{ backgroundColor: "#f8f9fa", width: "100%", height: "100%", paddingTop: "5%" }}>
|
||||
<div style={{ backgroundColor: "#f8f9fa", width: "100%", height: "100%" }}>
|
||||
{/* Header */}
|
||||
<Box
|
||||
component="header"
|
||||
style={{
|
||||
width: "100%",
|
||||
padding: "0.8rem 2rem",
|
||||
background: "linear-gradient(15deg, rgba(10, 114, 40, 1) 55%, rgba(101, 101, 184, 1) 100%)",
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
justifyContent: "space-between",
|
||||
color: "white",
|
||||
boxShadow: "0 2px 6px rgba(0,0,0,0.15)",
|
||||
position: "sticky",
|
||||
top: 0,
|
||||
zIndex: 100,
|
||||
}}
|
||||
>
|
||||
<Group gap="md">
|
||||
<Image
|
||||
src={logo}
|
||||
component={NextImage}
|
||||
fit="contain"
|
||||
alt="ebanking"
|
||||
style={{ width: "60px", height: "auto" }}
|
||||
/>
|
||||
<div>
|
||||
<Title order={3} style={{ fontFamily: "Roboto", color: "white", marginBottom: 2 }}>
|
||||
THE KANGRA CENTRAL CO-OPERATIVE BANK LTD.
|
||||
</Title>
|
||||
<Text size="xs" c="white" style={{ opacity: 0.85 }}>
|
||||
Head Office: Dharmshala, Kangra (H.P), Pin: 176215
|
||||
</Text>
|
||||
</div>
|
||||
</Group>
|
||||
</Box>
|
||||
{/* Main */}
|
||||
<Box style={{
|
||||
position: 'fixed', width: '100%', height: '12%', top: 0, left: 0, zIndex: 100,
|
||||
flex: 1,
|
||||
position: "relative",
|
||||
display: "flex",
|
||||
justifyContent: "flex-start",
|
||||
background: "linear-gradient(15deg,rgba(2, 163, 85, 1) 55%, rgba(101, 101, 184, 1) 100%)",
|
||||
// border: "1px solid black"
|
||||
justifyContent: "flex-end",
|
||||
alignItems: "center",
|
||||
overflow: "hidden",
|
||||
background: 'linear-gradient(to right, #48ac64ff, #199444ff)'
|
||||
}}>
|
||||
<Box style={{ flex: 1, backgroundColor: "#c1e0f0", position: "relative" }}>
|
||||
<Image
|
||||
fit="cover"
|
||||
src={logo}
|
||||
src={frontPage}
|
||||
component={NextImage}
|
||||
alt="ebanking"
|
||||
style={{ width: "40%", height: "100%", objectFit: "contain", marginLeft: 0 }}
|
||||
style={{ width: "100%", height: "100%" }}
|
||||
/>
|
||||
<Text
|
||||
style={{
|
||||
position: 'absolute',
|
||||
top: '50%',
|
||||
left: '64%',
|
||||
color: 'white',
|
||||
textShadow: '1px 1px 2px blue',
|
||||
}}
|
||||
>
|
||||
{/* <IconBuildingBank/> */}
|
||||
Head Office : Dharmshala, District: Kangra(H.P), Pincode: 176215
|
||||
</Box>
|
||||
<Box w={{ base: "100%", md: "50%" }} p="lg">
|
||||
<Card shadow="md" padding="xl" radius="md" style={{ maxWidth: 500, margin: "0 auto", height: '70vh', backdropFilter: 'blur(8px)' }}>
|
||||
{/* @ts-ignore */}
|
||||
<Title order={3} align='center'>Admin Portal</Title>
|
||||
<form onSubmit={handleLogin}>
|
||||
<TextInput
|
||||
label="User Name"
|
||||
placeholder="Enter your user name"
|
||||
value={userName}
|
||||
onChange={(e) => setUserName(e.currentTarget.value)}
|
||||
error={error}
|
||||
withAsterisk
|
||||
/>
|
||||
<PasswordInput
|
||||
label="Password"
|
||||
placeholder="Enter your password"
|
||||
value={psw}
|
||||
onChange={(e) => SetPsw(e.currentTarget.value)}
|
||||
withAsterisk
|
||||
mt="sm"
|
||||
/>
|
||||
<Group mt="sm" align="center">
|
||||
<Box style={{ backgroundColor: "#fff", fontSize: "18px", textDecoration: "line-through", padding: "4px 8px", fontFamily: "cursive" }}>{captcha}</Box>
|
||||
<Button size="xs" variant="light" onClick={regenerateCaptcha}>Refresh</Button>
|
||||
|
||||
</Group>
|
||||
<TextInput
|
||||
label="Enter CAPTCHA"
|
||||
placeholder="Enter above text"
|
||||
value={inputCaptcha}
|
||||
onChange={(e) => setInputCaptcha(e.currentTarget.value)}
|
||||
withAsterisk
|
||||
mt="sm"
|
||||
/>
|
||||
<Button type="submit" fullWidth mt="md" disabled={isLogging}>
|
||||
{isLogging ? "Logging..." : "Login"}
|
||||
</Button>
|
||||
</form>
|
||||
</Card>
|
||||
</Box>
|
||||
</Box>
|
||||
{/* Footer */}
|
||||
<Box
|
||||
component="footer"
|
||||
style={{
|
||||
width: "100%",
|
||||
textAlign: "center",
|
||||
fontSize: "12px",
|
||||
}}
|
||||
>
|
||||
<Text c='dimmed'>
|
||||
© 2025 KCC Bank. All rights reserved.
|
||||
</Text>
|
||||
</Box>
|
||||
<div>
|
||||
{/* Main */}
|
||||
<div style={{
|
||||
display: "flex", height: "84vh", overflow: "hidden", position: "relative",
|
||||
background: 'linear-gradient(to right, #48ac64ff, #199444ff)'
|
||||
}}>
|
||||
<div style={{ flex: 1, backgroundColor: "#c1e0f0", position: "relative" }}>
|
||||
<Image
|
||||
fit="cover"
|
||||
src={frontPage}
|
||||
component={NextImage}
|
||||
alt="ebanking"
|
||||
style={{ width: "100%", height: "100%" }}
|
||||
/>
|
||||
</div>
|
||||
<Box w={{ base: "100%", md: "50%" }} p="lg">
|
||||
<Card shadow="md" padding="xl" radius="md" style={{ maxWidth: 500, margin: "0 auto", height: '70vh', backdropFilter: 'blur(8px)' }}>
|
||||
{/* @ts-ignore */}
|
||||
<Title order={3} align='center'>Admin Portal</Title>
|
||||
<form onSubmit={handleLogin}>
|
||||
<TextInput
|
||||
label="User Name"
|
||||
placeholder="Enter your user name"
|
||||
value={userName}
|
||||
onChange={(e) => setUserName(e.currentTarget.value)}
|
||||
error={error}
|
||||
withAsterisk
|
||||
/>
|
||||
<PasswordInput
|
||||
label="Password"
|
||||
placeholder="Enter your password"
|
||||
value={psw}
|
||||
onChange={(e) => SetPsw(e.currentTarget.value)}
|
||||
withAsterisk
|
||||
mt="sm"
|
||||
/>
|
||||
{/* <Box style={{ textAlign: "right"}}>
|
||||
<Anchor
|
||||
style={{ fontSize: "14px", color: "#1c7ed6", cursor: "pointer" }}
|
||||
// onClick={() => router.push("/ValidateUser")}
|
||||
>
|
||||
Forgot Password?
|
||||
</Anchor>
|
||||
</Box> */}
|
||||
<Group mt="sm" align="center">
|
||||
<Box style={{ backgroundColor: "#fff", fontSize: "18px", textDecoration: "line-through", padding: "4px 8px", fontFamily: "cursive" }}>{captcha}</Box>
|
||||
<Button size="xs" variant="light" onClick={regenerateCaptcha}>Refresh</Button>
|
||||
|
||||
</Group>
|
||||
<TextInput
|
||||
label="Enter CAPTCHA"
|
||||
placeholder="Enter above text"
|
||||
value={inputCaptcha}
|
||||
onChange={(e) => setInputCaptcha(e.currentTarget.value)}
|
||||
withAsterisk
|
||||
mt="sm"
|
||||
/>
|
||||
<Button type="submit" fullWidth mt="md" disabled={isLogging}>
|
||||
{isLogging ? "Logging..." : "Login"}
|
||||
</Button>
|
||||
</form>
|
||||
</Card>
|
||||
</Box>
|
||||
</div>
|
||||
|
||||
{/* Footer */}
|
||||
<Box
|
||||
component="footer"
|
||||
style={{
|
||||
width: "100%",
|
||||
textAlign: "center",
|
||||
fontSize: "12px",
|
||||
}}
|
||||
>
|
||||
<Text c='dimmed'>
|
||||
© 2025 KCC Bank. All rights reserved.
|
||||
</Text>
|
||||
</Box>
|
||||
</div>
|
||||
</div>
|
||||
</Providers>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user