| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "wppb/login", |
| 5 |
"title": "Login", |
| 6 |
"category": "wppb-block", |
| 7 |
"description": "Displays the Front End Login form.", |
| 8 |
"keywords": [ "Login", "Form" ], |
| 9 |
"textdomain": "profile-builder", |
| 10 |
"attributes": { |
| 11 |
"register_url": { |
| 12 |
"type": "string", |
| 13 |
"default": "" |
| 14 |
}, |
| 15 |
"lostpassword_url": { |
| 16 |
"type": "string", |
| 17 |
"default": "" |
| 18 |
}, |
| 19 |
"auth_field": { |
| 20 |
"type": "boolean", |
| 21 |
"default": false |
| 22 |
}, |
| 23 |
"redirect_url": { |
| 24 |
"type": "string", |
| 25 |
"default": "" |
| 26 |
}, |
| 27 |
"logout_redirect_url": { |
| 28 |
"type": "string", |
| 29 |
"default": "" |
| 30 |
}, |
| 31 |
"is_preview": { |
| 32 |
"type": "boolean", |
| 33 |
"default": false |
| 34 |
}, |
| 35 |
"is_editor": { |
| 36 |
"type": "boolean", |
| 37 |
"default": false |
| 38 |
} |
| 39 |
}, |
| 40 |
"example": { |
| 41 |
"attributes": { |
| 42 |
"register_url": "", |
| 43 |
"lostpassword_url": "", |
| 44 |
"auth_field": false, |
| 45 |
"redirect_url": "", |
| 46 |
"logout_redirect_url": "", |
| 47 |
"is_preview": true, |
| 48 |
"is_editor": true |
| 49 |
} |
| 50 |
}, |
| 51 |
"editorScript": "wppb-block-login" |
| 52 |
} |
| 53 |
|