9fce51a3d7
Hid the themes which aren't under construction yet from the Theme Manager. Fixed a bug in the BBCode parser where every post had ten spaces appended to them. Added the get_reply() internal API function for plugins to make use of. Added the bell to the theme. Fixed some bits of the Cosmo theme where the rowhead wasn't appearing. Added a "Don't have an account?" link to the login page. I began work on the alerts system, I took a little break, so it's a little further behind than you might expect, but it shouldn't take too long for me to finish it up. I haven't finished the back-end portions of it yet, so there's not much to see yet!
22 lines
776 B
HTML
22 lines
776 B
HTML
{{template "header.html" . }}
|
|
{{template "account-menu.html" . }}
|
|
<div class="colblock_right">
|
|
<div class="rowitem rowhead"><a>Edit Avatar</a></div>
|
|
</div>
|
|
{{ if .CurrentUser.Avatar }}
|
|
<div class="colblock_right">
|
|
<div class="rowitem"><img src="{{.CurrentUser.Avatar}}" height="128px" max-width="128px" /></div>
|
|
</div>
|
|
{{end}}
|
|
<div class="colblock_right">
|
|
<form action="/user/edit/avatar/submit/" method="post" enctype="multipart/form-data">
|
|
<div class="formrow">
|
|
<div class="formitem"><a>Upload Avatar</a></div>
|
|
<div class="formitem"><input name="account-avatar" type="file" /></div>
|
|
</div>
|
|
<div class="formrow">
|
|
<div class="formitem"><button name="account-button" class="formbutton">Update</div></div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{{template "footer.html" . }} |