Ignore:
Timestamp:
02/20/12 16:27:19 (13 years ago)
Author:
hendrikvanantwerpen
Message:
  • [Client] Moved pages in subtree of rft/, allowing controllers next to them.
  • [Client] Created questions page, gives overview and allows adding.
  • [Client] Page controllers inherit from _Page, because the previous mechanism w

asn't working.

  • [Client] Added new user registration.
  • [Server] Changed user passwords to passwordHash/passwordSalt combination.
  • [Server] Added simple object marshalling and unmarshalling to preserve types.
  • [Server] Added ResearchToolObjectInterface? with static create() method. Implemented for all model classes.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/branches/rest-dojo-ui/client/rft/ui/LoginDialog.html

    r263 r274  
    99        <form data-dojo-type="dijit.form.Form" data-dojo-attach-point="loginForm">
    1010            <fieldset>
    11                 <label for="username" class="loginLabel">Email</label>
    12                 <input data-dojo-type="dijit.form.TextBox" name="username" type="text" class="loginInput" />
     11                <label for="email" class="loginLabel">Email</label>
     12                <input data-dojo-type="dijit.form.TextBox" name="email" type="text" class="loginInput" />
    1313                <label for="password" class="loginLabel">Password</label>
    1414                <input data-dojo-type="dijit.form.TextBox" name="password" type="password" class="loginInput" />
    1515            </fieldset>
    16             <button type="submit" data-dojo-type="dijit.form.Button" data-dojo-attach-event="onClick:onLogin">Login</button>
    17             <button type="button" data-dojo-type="dijit.form.Button" data-dojo-attach-event="onClick:onCancel">Cancel</button>
     16            <div style="float: right;">
     17                <button type="button" data-dojo-type="dijit.form.Button" data-dojo-attach-event="onClick:onRegister">Register</button>
     18                <button type="submit" data-dojo-type="dijit.form.Button" data-dojo-attach-event="onClick:onLogin">Login</button>
     19            </div>
    1820        </form>
    19         <div data-dojo-attach-point="loginErrors"></div>
     21        <div data-dojo-attach-point="loginErrors" style="clear: both; color: red;"></div>
    2022    </div>
    2123</div>
Note: See TracChangeset for help on using the changeset viewer.