blob: 0c83a92ca5496a16268710af9429cdc172d387ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* Create a reset input button
* Use this view for forms rather than creating a submit/reset button tag in the wild as it provides
* extra security which help prevent CSRF attacks.
*
* @package Elgg
* @subpackage Core
*/
$vars['type'] = 'reset';
echo elgg_view('input/button', $vars);
|