私は joomla 1.5 を使用しています。利用規約名を持つチェックボックスを追加する必要があります。以下のコードを使用しましたが、完全には機能しません。チェックボックスにチェックを入れても警告します。
<script type="text/javascript"><!--
function checkAgree() {
var agree = document.getElementById('formAgree');
if (!agree.checked) {
alert('To become a member you must agree to our terms of service!');
return false;
}
return true;
}
--></script>
<form action="<?php echo JRoute::_( 'index.php?option=com_user' ); ?>" method="post" id="josForm" name="josForm" class="form-validate" onsubmit="return checkAgree();">
<?php
// Terms of Service
$tokenHTML = str_replace('type="hidden"','id="formAgree" type="checkbox"',JHTML::_( 'form.token' ));
$tosURL = "tos.html"; // REPLACE THIS!
?>
<tr>
<td height="40" style="vertical-align: top;">
<label>
Terms of service:
</label>
</td>
<td>
<iframe src="<?php echo htmlentities($tosURL); ?>" width="307" height="150"></iframe>
</td>
</tr>
<tr>
<td colspan="2">
<p><?php echo $tokenHTML; ?> <b>Agree to terms of service.</b> *</p>
</td>
</tr>
<tr>