aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/ucp_avatar_options_local.html
diff options
context:
space:
mode:
authorCullen Walsh <ckwalsh@phpbb.com>2011-04-17 21:58:51 -0700
committerCullen Walsh <ckwalsh@cullenwalsh.com>2012-03-18 22:19:16 +0000
commit7abded081d5ae3d231148b0485c8605b44973229 (patch)
tree159efb497c600ef0add10334d02ff1b43f0e5ef7 /phpBB/styles/prosilver/template/ucp_avatar_options_local.html
parent24379f1297d092141f04ccb55013e85e9b494a83 (diff)
downloadforums-7abded081d5ae3d231148b0485c8605b44973229.tar
forums-7abded081d5ae3d231148b0485c8605b44973229.tar.gz
forums-7abded081d5ae3d231148b0485c8605b44973229.tar.bz2
forums-7abded081d5ae3d231148b0485c8605b44973229.tar.xz
forums-7abded081d5ae3d231148b0485c8605b44973229.zip
[feature/avatars] UCP Avatar Interface
This stubs out the avatar form fields and how form processing will occur. Form processing is not yet implemented, but shouldn't be too hard. After this I will refactor/duplicate some of the logic for the ACP. PHPBB3-10018
Diffstat (limited to 'phpBB/styles/prosilver/template/ucp_avatar_options_local.html')
-rw-r--r--phpBB/styles/prosilver/template/ucp_avatar_options_local.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_avatar_options_local.html b/phpBB/styles/prosilver/template/ucp_avatar_options_local.html
new file mode 100644
index 0000000000..2644397e0d
--- /dev/null
+++ b/phpBB/styles/prosilver/template/ucp_avatar_options_local.html
@@ -0,0 +1,14 @@
+<label for="category">{L_AVATAR_CATEGORY}: <select name="av_local_cat" id="category">
+<option value="">{L_NO_AVATAR_CATEGORY}</option>
+<!-- BEGIN av_local_cats -->
+<option value="{av_local_cats.NAME}"<!-- IF av_local_cats.SELECTED --> selected="selected"<!-- ENDIF -->>{av_local_cats.NAME}</option>
+<!-- END av_local_cats -->
+</select></label>
+<input type="submit" value="{L_GO}" name="av_local_go" class="button2" />
+
+<div id="gallery">
+<!-- BEGIN av_local_imgs -->
+ <label for="av-{av_local_imgs.S_ROW_COUNT}"><img src="{av_local_imgs.AVATAR_IMAGE}" alt="" /><br />
+ <input type="radio" name="avatar_select" id="av-{av_local_imgs.S_ROW_COUNT}" value="{av_local_imgs.AVATAR_FILE}" /></label>
+<!-- END av_local_imgs -->
+</div>