1 | ({$inc_ktai_header|smarty:nodefaults})({strip}) |
---|
2 | <table width="100%"><tr><td align="center" bgcolor="#({$ktai_color_config.bg_01})"> |
---|
3 | <font color="#({$ktai_color_config.font_01})"><a name="top"> |
---|
4 | ({$SNS_NAME})新規登録</a></font><br> |
---|
5 | </td></tr></table> |
---|
6 | |
---|
7 | 以下の項目を入力して、登録を完了してください。<font color="#({$ktai_color_config.font_04})">*</font>の項目は必須です。<br> |
---|
8 | <br> |
---|
9 | |
---|
10 | ({t_form _attr='utn' m=ktai a=do_o_insert_c_member}) |
---|
11 | <input type="hidden" name="ses" value="({$ses})"> |
---|
12 | ({if $aff_id}) |
---|
13 | <input type="hidden" name="aff_id" value="({$aff_id})"> |
---|
14 | ({/if}) |
---|
15 | |
---|
16 | ({capture name="nick"}) |
---|
17 | <font color="#({$ktai_color_config.font_02})">ニックネーム:</font><font color="#({$ktai_color_config.font_04})">*</font><br> |
---|
18 | <input type="text" name="nickname"><br> |
---|
19 | <br> |
---|
20 | ({/capture}) |
---|
21 | ({capture name="birth"}) |
---|
22 | <font color="#({$ktai_color_config.font_02})">生まれた年:</font><font color="#({$ktai_color_config.font_04})">*</font><br> |
---|
23 | <input type="text" name="birth_year" size="4" maxlength="4" istyle="4" mode="numeric">年<br> |
---|
24 | <select name="public_flag_birth_year"> |
---|
25 | ({foreach from=$public_flags key=key item=item}) |
---|
26 | <option value="({$key})"({if $c_member.public_flag_birth_year == $key}) selected="selected"({/if})>({$item}) |
---|
27 | ({/foreach}) |
---|
28 | </select><br> |
---|
29 | <br> |
---|
30 | |
---|
31 | <font color="#({$ktai_color_config.font_02})">誕生日:</font><font color="#({$ktai_color_config.font_04})">*</font><br> |
---|
32 | <select name="birth_month"> |
---|
33 | <option value="" selected="selected">-- |
---|
34 | ({foreach from=$month_list item=item}) |
---|
35 | <option value="({$item})">({$item}) |
---|
36 | ({/foreach}) |
---|
37 | </select>月<br> |
---|
38 | <select name="birth_day"> |
---|
39 | <option value="" selected="selected">-- |
---|
40 | ({foreach from=$day_list item=item}) |
---|
41 | <option value="({$item})">({$item}) |
---|
42 | ({/foreach}) |
---|
43 | </select>日<br> |
---|
44 | <br> |
---|
45 | ({/capture}) |
---|
46 | |
---|
47 | ({foreach from=$profile_list item=profile}) |
---|
48 | |
---|
49 | ({if !$_cnt_nick && $profile.sort_order >= $smarty.const.SORT_ORDER_NICK |
---|
50 | && !$_cnt_birth && $profile.sort_order >= $smarty.const.SORT_ORDER_BIRTH}) |
---|
51 | ({counter assign="_cnt_nick"}) |
---|
52 | ({counter assign="_cnt_birth"}) |
---|
53 | ({if $smarty.const.SORT_ORDER_NICK > $smarty.const.SORT_ORDER_BIRTH}) |
---|
54 | ({$smarty.capture.birth|smarty:nodefaults}) |
---|
55 | ({$smarty.capture.nick|smarty:nodefaults}) |
---|
56 | ({else}) |
---|
57 | ({$smarty.capture.nick|smarty:nodefaults}) |
---|
58 | ({$smarty.capture.birth|smarty:nodefaults}) |
---|
59 | ({/if}) |
---|
60 | ({/if}) |
---|
61 | |
---|
62 | ({if !$_cnt_nick && $profile.sort_order >= $smarty.const.SORT_ORDER_NICK}) |
---|
63 | ({counter assign="_cnt_nick"}) |
---|
64 | ({$smarty.capture.nick|smarty:nodefaults}) |
---|
65 | ({/if}) |
---|
66 | |
---|
67 | ({if !$_cnt_birth && $profile.sort_order >= $smarty.const.SORT_ORDER_BIRTH}) |
---|
68 | ({counter assign="_cnt_birth"}) |
---|
69 | ({$smarty.capture.birth|smarty:nodefaults}) |
---|
70 | ({/if}) |
---|
71 | |
---|
72 | ({if $profile.disp_regist}) |
---|
73 | <font color="#({$ktai_color_config.font_02})">({$profile.caption}):</font> |
---|
74 | ({if $profile.is_required})<font color="#({$ktai_color_config.font_04})">*</font>({/if})<br> |
---|
75 | |
---|
76 | ({if $profile.form_type == 'text'}) |
---|
77 | <input type="text" name="profile[({$profile.name})]" value="({$c_member.profile[$profile.name].value})"> |
---|
78 | ({elseif $profile.form_type == 'textlong'}) |
---|
79 | <input type="text" name="profile[({$profile.name})]" value="({$c_member.profile[$profile.name].value})"> |
---|
80 | ({elseif $profile.form_type == 'textarea'}) |
---|
81 | <textarea name="profile[({$profile.name})]" rows="6">({$c_member.profile[$profile.name].value})</textarea> |
---|
82 | ({elseif $profile.form_type == 'select' || $profile.form_type == 'radio'}) |
---|
83 | <select name="profile[({$profile.name})]"> |
---|
84 | <option value="">選択してください |
---|
85 | ({foreach item=item from=$profile.options}) |
---|
86 | <option value="({$item.c_profile_option_id})"({if $c_member.profile[$profile.name].value == $item.value}) selected="selected"({/if})>({$item.value|default:"--"}) |
---|
87 | ({/foreach}) |
---|
88 | </select> |
---|
89 | ({elseif $profile.form_type == 'checkbox'}) |
---|
90 | ({foreach item=item from=$profile.options name=check}) |
---|
91 | <input type="checkbox" name="profile[({$profile.name})][]" value="({$item.c_profile_option_id})"({if $c_member.profile[$profile.name].value && in_array($item.value|smarty:nodefaults, $c_member.profile[$profile.name].value)}) checked="checked"({/if})>({$item.value|default:"--"}) |
---|
92 | ({/foreach}) |
---|
93 | ({/if}) |
---|
94 | ({if $profile.info}) |
---|
95 | <br><font color="#({$ktai_color_config.font_04})">({$profile.info})</font> |
---|
96 | ({/if}) |
---|
97 | <br> |
---|
98 | |
---|
99 | ({if $profile.public_flag_edit}) |
---|
100 | <select name="public_flag[({$profile.name})]"> |
---|
101 | ({foreach from=$public_flags key=key item=item}) |
---|
102 | <option value="({$key})"({if $profile.public_flag_default==$key}) selected="selected"({/if})>({$item}) |
---|
103 | ({/foreach}) |
---|
104 | </select> |
---|
105 | <br> |
---|
106 | ({/if}) |
---|
107 | <br> |
---|
108 | ({/if}) |
---|
109 | |
---|
110 | ({/foreach}) |
---|
111 | |
---|
112 | ({if !$_cnt_nick && !$_cnt_birth}) |
---|
113 | ({if $smarty.const.SORT_ORDER_NICK > $smarty.const.SORT_ORDER_BIRTH}) |
---|
114 | ({$smarty.capture.birth|smarty:nodefaults}) |
---|
115 | ({$smarty.capture.nick|smarty:nodefaults}) |
---|
116 | ({else}) |
---|
117 | ({$smarty.capture.nick|smarty:nodefaults}) |
---|
118 | ({$smarty.capture.birth|smarty:nodefaults}) |
---|
119 | ({/if}) |
---|
120 | ({else}) |
---|
121 | ({if !$_cnt_nick})({$smarty.capture.nick|smarty:nodefaults})({/if}) |
---|
122 | ({if !$_cnt_birth})({$smarty.capture.birth|smarty:nodefaults})({/if}) |
---|
123 | ({/if}) |
---|
124 | <font color="#({$ktai_color_config.font_02})">パスワード:</font><font color="#({$ktai_color_config.font_04})">*</font><br> |
---|
125 | <input type="text" name="password" maxlength="12" istyle="3" mode="alphabet"><br> |
---|
126 | <font color="#({$ktai_color_config.font_04})">※パスワードは6-12文字の半角英数で入力してください</font><br> |
---|
127 | <br> |
---|
128 | <font color="#({$ktai_color_config.font_02})">秘密の質問:</font><font color="#({$ktai_color_config.font_04})">*</font><br> |
---|
129 | <select name="c_password_query_id"> |
---|
130 | <option value="0">選択してください |
---|
131 | ({foreach from=$password_query_list key=key item=item}) |
---|
132 | <option value="({$key})">({$item}) |
---|
133 | ({/foreach}) |
---|
134 | </select><br> |
---|
135 | <br> |
---|
136 | <font color="#({$ktai_color_config.font_02})">秘密の質問の答え:</font><font color="#({$ktai_color_config.font_04})">*</font><br> |
---|
137 | <input type="text" name="password_query_answer" value=""><br> |
---|
138 | <font color="#({$ktai_color_config.font_04})">※パスワードを忘れた場合の確認に使用します。</font> |
---|
139 | <hr color="#({$ktai_color_config.border_01})"> |
---|
140 | <center> |
---|
141 | <input type="submit" value="この内容で登録する"> |
---|
142 | </center> |
---|
143 | </form> |
---|
144 | |
---|
145 | ({/strip})({$inc_ktai_footer|smarty:nodefaults}) |
---|