Hello, I'm trying to develop a payment module for my local store using my local bank html form
I created the module name file and code structure as follow:
class ModuleName extends PaymentModule{
function __construct() {
}
function install() {
}
function uninstall() {
}
}
But I really don't where to use the html form and where to go from here. Any help will be appreciate.