import {Form, Input, Typography} from 'antd' import React from 'react' import {t} from 'ttag' import {BankOutlined, LockOutlined} from "@ant-design/icons" export default function GandiConnectorForm() { return ( <> {t`Retrieve a Personal Access Token from your customer account on the Provider's website`} } rules={[{required: true, message: t`Required`}]} > } autoComplete='off'/> {t`It indicates the organization that will pay for the ordered product`} } required={false} > } autoComplete='off' placeholder='xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'/> ) }