-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathucf_profile_add.tpl
53 lines (50 loc) · 1.63 KB
/
ucf_profile_add.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<legend>{'Registration'|@translate}</legend>
<ul>
{foreach from=$edit_users_profil item=adduersregister}
{if $adduersregister.UCFID == 1}
<li>
<span class="property">{'Username'|@translate}</span>
{$UCF_USERNAME}
</li>
{else if $adduersregister.UCFID == 2}
{if not $SPECIAL_USER}
<li>
<span class="property">
<label for="password">{'Password'|@translate}</label>
</span>
<input type="password" name="password" id="password" value="">
</li>
<li>
<span class="property">
<label for="use_new_pwd">{'New password'|@translate}</label>
</span>
<input type="password" name="use_new_pwd" id="use_new_pwd" value="">
</li>
<li>
<span class="property">
<label for="passwordConf">{'Confirm Password'|@translate}</label>
</span>
<input type="password" name="passwordConf" id="passwordConf" value="">
</li>
{/if}
{else if $adduersregister.UCFID == 3}
{if not $SPECIAL_USER}
<li>
<span class="property">
<label for="mail_address">{'Email address'|@translate}</label>
</span>
<input type="text" name="mail_address" id="mail_address" value="{$UCF_EMAIL}">
</li>
{/if}
{else if $adduersregister.UCFID == 4}
{else if}
<li>
<span class="property">
<label for="data[{$adduersregister.UCFID}]">{if $adduersregister.UCFOBLIGATORY==1}*{/if} {$adduersregister.UCFWORDING}</label>
</span>
<input type="text"{if $adduersregister.UCFOBLIGATORY==1}required{/if} name="data[{$adduersregister.UCFID}]" id="data[{$adduersregister.UCFID}]" value="{$adduersregister.UCFDATA}">
</li>
{/if}
{/foreach}
</ul>
</fieldset>