blob: 153674dd0c1b1229400ffda79749a007f67d5b08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
*
*/
$label = elgg_echo('registrationterms:agree', array(elgg_normalize_url('/terms')));
$input = elgg_view('input/checkbox', array(
'name' => 'agreetoterms',
'value' => 'true',
'required' => TRUE,
'default' => false,
));
?>
<div>
<label><?php echo "$input $label"; ?></label>
</div>
|