Custom Login Forms

Some partners may want to provide a custom login form. In order to do this you need to know the "Short Name" for your organization. This can be found on the Organization Dashboard.

Sample Form

<form id="loginForm" action="https://www.nexportcampus.com//Home/Login.nex" method="post">
<fieldset >
        <legend>Please Sign In...</legend>
        

        <div class="layout-fixed">
            <div class="col-left width-120 right"><label for="username">Login:</label></div>
            <div class="col-main last">
                <input id="username" name="username" type="text" >
           </div>
        </div>

        <div class="layout-fixed">
            <div class="col-left width-120 right"><label for="password">Password:</label></div>
            <div class="col-main last">
                <input id="password" name="password" type="password" >
            </div>
        </div>
        
            

        <div class="layout-fixed">
            <div class="col-left width-120 right">
                <input id="staySignedIn" type="checkbox" value="true" name="RememberMe" checked="checked">
            </div>
            <div class="col-main last">
                <label for="staySignedIn">Stay Signed In</label>
            </div>
        </div>

        <div class="layout-fixed">
            <div class="col-left width-120">&nbsp;</div>
            <div class="col-main last">
                <button id="loginButton" type="submit">Sign In</button>
            </div>
        </div>


        <div class="layout-fixed" id="cookies-disabled-warning" style="display: none;">
            <div class="col-left width-120 right"></div>
            <div class="col-main last error">You must have cookies enabled in your browser to login</div>
        </div>
    </fieldset>
    </form>

Form Fields

Field Name
Description
Required/Optional

username

The nexport username of the student

required

password

Password of the student

required

authenticator

Must be: a92287a9-d2aa-46a4-8662-9ccd3de1e0e2

required

Last updated