Hi @danielkilev,
Welcome to the Auth0 Community!
I was able to hide the submit button with the following code:
<script>
//lock default template code...
lock.on("signin ready", () => {
document.getElementById('1-submit').remove()
})
</script>