Login
Frontastic component name
Login
Page type
Used on the *My Account dynamic page
Example images


Code samples
{
"tasticType": "frontastic/ui/account/login",
"name": "Frontastic UI account login",
"category": "Account",
"icon": "account_circle",
"schema": [
{
"name": "Media",
"fields": [
{
"label": "Logo",
"field": "logo",
"type": "media",
"required": true
}
]
},
{
"name": "Content",
"fields": [
{
"label": "Registration link",
"field": "registerLink",
"type": "reference",
"required": true
},
{
"label": "Account link",
"field": "accountLink",
"type": "reference",
"required": true
}
]
}
]
}
import React from 'react';
import Login, { LoginProps } from 'components/frontastic-ui/account/login';
export interface Props {
data: LoginProps;
}
const AccountLoginTastic: React.FC<Props> = ({ data }) => {
return <Login {...data} />;
};
export default AccountLoginTastic;
Updated 10 days ago
Did this page help you?