source: ComponentRegistry/trunk/ComponentRegistry/src/main/java/clarin/cmdi/componentregistry/frontend/UserSettingsPage.html @ 1984

Last change on this file since 1984 was 1984, checked in by twagoo, 12 years ago

Added link to close tab to UsersSettingsPage?, users often get confused with the new tab and don't realize they should close it. (Refs #156)

File size: 693 bytes
Line 
1<html
2    xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd">
3    <head>
4        <title>CMDI ComponentRegistry Admin Page</title>
5        <link rel="stylesheet" type="text/css" href="css/adminstyle.css"/>
6    </head>
7    <body>
8        <h1>
9            User settings for <span wicket:id="userName">userName</span>
10        </h1>
11        <div wicket:id="feedback">[Feedback Panel]</div>
12        <form wicket:id="settingsForm">
13            <p>
14                <label>User display name:</label>
15                <input wicket:id="displayName"/>
16            </p>
17            <p>
18                <input type="submit" value="Submit"/>
19            </p>
20        </form>
21        <hr />
22        <p>
23                <a href="#" onClick="window.close();">Back to Component Registry</a>
24        </p>
25       
26    </body>
27</html>
Note: See TracBrowser for help on using the repository browser.