diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-05-30 14:32:44 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-05-30 14:32:44 -0300 |
commit | 4c82ccf075b8704cc107099fc082c4c589a2629c (patch) | |
tree | 6b7a0d5c75cb4de5bd8e29c1eb6d650ce2d9694e /views | |
parent | bd0f536b142ac72d3209d67c7ebea4055852d5e7 (diff) | |
download | elgg-4c82ccf075b8704cc107099fc082c4c589a2629c.tar.gz elgg-4c82ccf075b8704cc107099fc082c4c589a2629c.tar.bz2 |
Adding untracked content
Diffstat (limited to 'views')
-rw-r--r-- | views/default/forms/profile/fields/reset.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/views/default/forms/profile/fields/reset.php b/views/default/forms/profile/fields/reset.php new file mode 100644 index 000000000..c0bb1b7f4 --- /dev/null +++ b/views/default/forms/profile/fields/reset.php @@ -0,0 +1,12 @@ +<?php +/** + * Reset profile fields form + */ + +echo '<div class="elgg-foot">'; +$params = array( + 'value' => elgg_echo('profile:resetdefault'), + 'class' => 'elgg-button-cancel', +); +echo elgg_view('input/submit', $params); +echo '</div>'; |