mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 12:33:29 +01:00
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
12 lines
513 B
HTML
12 lines
513 B
HTML
<dl>
|
|
<dt><label for="uploadfile">{L_UPLOAD_AVATAR_FILE}:</label></dt>
|
|
<dd><input type="hidden" name="MAX_FILE_SIZE" value="{AVATAR_SIZE}" /><input type="file" name="uploadfile" id="uploadfile" class="inputbox autowidth" /></dd>
|
|
</dl>
|
|
|
|
<!-- IF S_UPLOAD_AVATAR_URL -->
|
|
<dl>
|
|
<dt><label for="uploadurl">{L_UPLOAD_AVATAR_URL}:</label><br /><span>{L_UPLOAD_AVATAR_URL_EXPLAIN}</span></dt>
|
|
<dd><input type="text" name="uploadurl" id="uploadurl" value="{AVATAR_URL}" class="inputbox" /></dd>
|
|
</dl>
|
|
<!-- ENDIF -->
|