57 lines
2.1 KiB
HTML
57 lines
2.1 KiB
HTML
|
<script type="text/javascript">
|
||
|
<!--
|
||
|
function opt_select($cOpt)
|
||
|
{
|
||
|
if($cOpt=="opt_mail1")
|
||
|
{
|
||
|
document.getElementById("opt_mail0").checked = '';
|
||
|
}
|
||
|
if($cOpt=="opt_pm1")
|
||
|
{
|
||
|
document.getElementById("opt_pm0").checked = '';
|
||
|
}
|
||
|
if($cOpt=="opt_pmp1")
|
||
|
{
|
||
|
document.getElementById("opt_pmp0").checked = '';
|
||
|
}
|
||
|
|
||
|
if($cOpt=="opt_mail0")
|
||
|
{
|
||
|
document.getElementById("opt_mail1").checked = '';
|
||
|
}
|
||
|
if($cOpt=="opt_pm0")
|
||
|
{
|
||
|
document.getElementById("opt_pm1").checked = '';
|
||
|
}
|
||
|
if($cOpt=="opt_pmp0")
|
||
|
{
|
||
|
document.getElementById("opt_pmp1").checked = '';
|
||
|
}
|
||
|
}
|
||
|
-->
|
||
|
</script>
|
||
|
|
||
|
<div>{message}</div>
|
||
|
<form action="index.php?ucp-sets" method="post">
|
||
|
<fieldset><legend>Account Einstellungen:</legend>
|
||
|
|
||
|
<div style="width:100%; height:20px;">Dürfen Ihnen andere Mitglieder Emails senden?</div>
|
||
|
<div style="width:100%; text-align:center;">
|
||
|
<input id="opt_mail1" type="radio" onclick="opt_select(this.id);" value="1" name="opt_mail" {opt_mail1} /><label for="opt_mail1"> Ja</label>
|
||
|
<input id="opt_mail0" type="radio" onclick="opt_select(this.id);" value="0" name="opt_mail" {opt_mail0} /><label for="opt_mail0"> Nein</label>
|
||
|
</div>
|
||
|
|
||
|
<div style="width:100%; height:20px;">Dürfen Ihnen andere Mitglieder Privat Nachrichten senden?</div>
|
||
|
<div style="width:100%; text-align:center;">
|
||
|
<input id="opt_pm1" type="radio" onclick="opt_select(this.id);" value="1" name="opt_pm" {opt_pm1} /><label for="opt_pm1"> Ja</label>
|
||
|
<input id="opt_pm0" type="radio" onclick="opt_select(this.id);" value="0" name="opt_pm" {opt_pm0} /><label for="opt_pm0"> Nein</label>
|
||
|
</div>
|
||
|
|
||
|
<div style="width:100%; height:20px;">Wollen Sie dass sich bei einer neuen Privat Nachricht ein Popup öffnet?</div>
|
||
|
<div style="width:100%; text-align:center;">
|
||
|
<input id="opt_pmp1" type="radio" onclick="opt_select(this.id);" value="1" name="opt_pmp" {opt_pmp1} /><label for="opt_pmp1"> Ja</label>
|
||
|
<input id="opt_pmp0" type="radio" onclick="opt_select(this.id);" value="0" name="opt_pmp" {opt_pmp0} /><label for="opt_pmp0"> Nein</label>
|
||
|
</div>
|
||
|
<div style="width:100%;"><input type="submit" name="subSets" value="Speichern" /></div>
|
||
|
</fieldset>
|
||
|
</form>
|