33c2f4ccb0
Added support for SSL. Added the email system. Not fully tested. Added Email Verification. Added the Emails Page in the Account Manager. Email Activation is now fully supported. Fixed CustomErrorJSQ() and added CustomError(). Added commented out tests for Vestigo. Added tests for the new (possibly temporary) custom router. Swapped some of the custom error blocks for the Account Manager with LocalError calls. Moved the account menu into it's own template.
25 lines
993 B
HTML
25 lines
993 B
HTML
{{template "header.html" . }}
|
|
{{template "account-menu.html" . }}
|
|
<div class="colblock_right">
|
|
<div class="rowitem"><a>Edit Password</a></div>
|
|
</div>
|
|
<div class="colblock_right">
|
|
<form action="/user/edit/critical/submit/" method="post">
|
|
<div class="formrow">
|
|
<div class="formitem"><a>Current Password</a></div>
|
|
<div class="formitem"><input name="account-current-password" type="password" placeholder="*****" /></div>
|
|
</div>
|
|
<div class="formrow">
|
|
<div class="formitem"><a>New Password</a></div>
|
|
<div class="formitem"><input name="account-new-password" type="password" placeholder="*****" /></div>
|
|
</div>
|
|
<div class="formrow">
|
|
<div class="formitem"><a>Confirm Password</a></div>
|
|
<div class="formitem"><input name="account-confirm-password" type="password" placeholder="*****" /></div>
|
|
</div>
|
|
<div class="formrow">
|
|
<div class="formitem"><button name="account-button" class="formbutton">Update</div></div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{{template "footer.html" . }} |