addElement( 'submit', 'btnCancel', [ 'label' => 'Cancel', 'attribs' => [ 'class' => 'btn', 'onclick' => "window.location.href = '" . htmlspecialchars($this->getCancelUrl()) . "';", 'helper' => 'formInputButton', ], ] ); $this->addElement( 'submit', 'btnSubmit', [ 'label' => 'Proceed to the Next Step >', 'attribs' => ['class' => 'btn btn-primary'], ] ); $this->addDisplayGroup(['btnCancel', 'btnSubmit'], 'submitGroup'); return $this; } }