Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manojiksula/83fb17fd10aab0943da017679168f822 to your computer and use it in GitHub Desktop.
Save manojiksula/83fb17fd10aab0943da017679168f822 to your computer and use it in GitHub Desktop.
Drupal 8 Adding a Reset Button to a form
<?php
/**
* Implements template_preprocess_form().
*/
function TEMPLATE_preprocess_form(&$vars) {
$vars['form']['actions']['reset'] = [
'#type' => 'html_tag',
'#tag' => 'input',
'#attributes' => [
'class' => 'button',
'type' => 'reset',
'value' => 'Reset',
],
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment