| 69 | | |
|---|
| 70 | | <!-- BEGIN: create new user form --> |
|---|
| 71 | | <form name="create_user_form" id="create_user_form" action="test" method="get"> |
|---|
| 72 | | <h2>Create a New User</h2> |
|---|
| 73 | | |
|---|
| 74 | | <fieldset> |
|---|
| 75 | | <legend>User Credentials</legend> |
|---|
| 76 | | |
|---|
| 77 | | <table class="FormTable" summary=""> |
|---|
| 78 | | <col width="40%" /> |
|---|
| 79 | | <col width="60%" /> |
|---|
| 80 | | |
|---|
| 81 | | <tbody> |
|---|
| 82 | | <tr> |
|---|
| 83 | | <th scope="row"><label for="username">Username</label></th> |
|---|
| 84 | | <td><input type="text" name="username" id="username" value="" class="TextInput" /></td> |
|---|
| 85 | | </tr> |
|---|
| 86 | | |
|---|
| 87 | | <tr> |
|---|
| 88 | | <th scope="row"><label for="password">Password</label></th> |
|---|
| 89 | | <td><input type="password" name="password" id="password" value="" class="TextInput" /></td> |
|---|
| 90 | | </tr> |
|---|
| 91 | | </tbody> |
|---|
| 92 | | </table> |
|---|
| 93 | | |
|---|
| 94 | | <div class="FormAction"> |
|---|
| 95 | | <input type="submit" name="submit" value="Create User" /> |
|---|
| 96 | | </div> |
|---|
| 97 | | </fieldset> |
|---|
| 98 | | </form> |
|---|
| 99 | | <!-- END: create new user form --> |
|---|
| 100 | | |
|---|
| 101 | | </div> |
|---|
| 102 | | |
|---|
| 103 | | <div class="wrap"> |
|---|