25074b58b2
We now have an Advanced Forum Permissions Editor providing more granular control over permissions. Tweaked the button CSS and some other bits and pieces. Added a details section to the View Count Graph. Renamed a few template files for the sake of consistency and for an upcoming refactor. Unknown user agents are now logged in debug mode. Added GetCopy() to the forum permissions store. Fixed a crash bug in the forum deletion action. Refactored the permissions list in the group permissions editor.
26 lines
941 B
HTML
26 lines
941 B
HTML
{{template "header.html" . }}
|
|
<div class="colstack account">
|
|
{{template "account_menu.html" . }}
|
|
<main class="colstack_right">
|
|
<div class="colstack_item colstack_head rowhead">
|
|
<div class="rowitem"><h1>Edit Username</h1></div>
|
|
</div>
|
|
<div class="colstack_item the_form">
|
|
<form action="/user/edit/username/submit/" method="post">
|
|
<div class="formrow real_first_child">
|
|
<div class="formitem formlabel"><a>Current Username</a></div>
|
|
<div class="formitem formlabel">{{.CurrentUser.Name}}</div>
|
|
</div>
|
|
<div class="formrow">
|
|
<div class="formitem formlabel"><a>New Username</a></div>
|
|
<div class="formitem"><input name="account-new-username" type="text" required /></div>
|
|
</div>
|
|
<div class="formrow">
|
|
<div class="formitem"><button name="account-button" class="formbutton form_middle_button">Update</button></div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
{{template "footer.html" . }}
|