Submit button for saving form

how can save this contact us page
i’m trying to add a submit button in uischema but its not working its create a field in the jsonform not creating a button

here is the code
this.uischema = {
“type”: “VerticalLayout”,
“elements”: [
{
“type”: “Control”,
“scope”: “#/properties/name”
},
{
“type”: “Control”,
“scope”: “#/properties/email”
},
{
“type”: “Control”,
“scope”: “#/properties/message”,
“options”: {
“multi”: true,
“textarea”: true
}
}
]
}

this.schema = {
“type”: “object”,
“properties”: {
“name”: {
“type”: “string”
},
“email”: {
“type”: “string”,
“format”: “email”
},
“message”: {
“type”: “string”
}
},
“required”: [
“name”,
“email”,
“message”
]
}

Hi @abdulahad7591,

We don’t offer a submit button renderer out of the box. You either need to implement the submit button renderer yourself, or simply implement the button outside of JSON Forms, submitting the data you get out of the onChange events of JSON Forms.