ITBrix.Core.UserAccount

About the webframe

This webframe is providing user account management.

Default view account template

<p class="command-item">
    {{ctrl_manage_link}}
</p>
<div class="holder holder-grid">
    <table class="grid" border="0" cellpadding="0" cellspacing="0">
        <colgroup>
            <col width="180"/>
            <col/>
        </colgroup>
        <tbody>
        <tr class="odd">
            <th title="When the account was created in the system">
                Registration date:
            </th>
            <td>
                {{creation_date}}
            </td>
        </tr>
        <tr class="even">
            <th title="The user name is used for log in and also as a screen name">
                Username:
            </th>
            <td>
                {{username}}
            </td>
        </tr>
        <tr class="odd">
            <th title="The email can be used for login and for system notifications">
                Email:
            </th>
            <td>
                {{email}}
            </td>
        </tr>
        <tr class="even">
            <th title="The password is stored within the system with md5 encryption only">
                Password:
            </th>
            <td>
                ******
            </td>
        </tr>
        </tbody>
    </table>
</div>

Default manage account template

{{ctrl_validation_summary}}

<div class="fb">
    <div class="fb-form">

        <div class="fb-control fbc-textbox">
            <span class="fb-label" title="Unique. Registration rules are applied.">
                <label>
                    Username
                </label>
                <span class="fb-required">
                    *
                </span>
            </span>
            <div class="fb-field">
                <span class="fb-field-wrap">
                    {{ctrl_username_textbox}}
                </span>
            </div>
        </div>

        <div class="fb-control fbc-textbox">
            <span class="fb-label" title="Unique. Registration rules are applied.">
                <label>
                    Email
                </label>
                <span class="fb-required">
                    *
                </span>
            </span>
            <div class="fb-field">
                <span class="fb-field-wrap">
                    {{ctrl_email_textbox}}
                </span>
            </div>
        </div>

        <div class="fb-control fbc-textbox">
            <span class="fb-label"
                  title="For security reasons any account modification requires the current password">
                <label>
                    Current password
                </label>
                <span class="fb-required">
                    *
                </span>
            </span>
             <div class="fb-field">
                <span class="fb-field-wrap">
                    {{ctrl_current_password_textbox}}
                </span>
            </div>
        </div>

        <div class="fb-control fbc-textbox">
            <span class="fb-label" title="Registration rules are applied.">
                <label>
                    New password
                </label>
            </span>
            <div class="fb-field">
                <span class="fb-field-wrap">
                    {{ctrl_new_password_textbox}}
                </span>
            </div>
        </div>

        <div class="fb-control fbc-textbox">
            <span class="fb-label" title="Verify the password. Registration rules are applied.">
                <label>
                    New password again
                </label>
            </span>
            <div class="fb-field">
                <span class="fb-field-wrap">
                    {{ctrl_verify_password_textbox}}
                </span>
            </div>
        </div>
        <div class="buttons clear" id="buttons">
            {{ctrl_save_link}}
            {{ctrl_cancel_link}}
        </div>

    </div>
</div>