]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/templates/default/actor/user/register.tt2
plugged in saving of new users
[working/Evergreen.git] / Open-ILS / web / templates / default / actor / user / register.tt2
1 [% WRAPPER default/base.tt2 %]
2 <script src='[% ctx.media_prefix %]/js/ui/default/actor/user/register.js'> </script>
3
4 <style>
5
6     /* XXX Move me into the CSS tree XXX */
7
8     #uedit-tbody tr td {
9         padding: 5px;
10         text-align: left;
11     }
12
13     #uedit-save-div {
14         position: fixed;
15         top:40px;
16         right:30px;
17         width:300px;
18         border:2px solid #d9e8f9;
19         -moz-border-radius: 10px;
20         font-weight: bold;
21         padding: 12px;
22         text-align:center;
23         vertical-align:middle;
24     }
25
26     #uedit-help-div {
27         position: fixed;
28         top:124px;
29         right:30px;
30         width:300px;
31         border:2px dashed #d9e8f9;
32         -moz-border-radius: 10px;
33         font-weight: bold;
34         padding: 20px;
35     }
36     .uedit-help {
37         width: 25px;
38         border:1px solid #e0e0e0;
39         text-align:center;
40         vertical-align:middle;
41     }
42     .divider td {
43         min-height:10px;
44         background-color: #e0e0e0;
45     }
46
47 </style>
48
49 <table>
50     <tbody id='uedit-tbody'>
51         <tr fmclass='ac' fmfield='barcode'/>
52         <tr fmclass='au' fmfield='usrname'/>
53         <tr fmclass='au' fmfield='passwd'/>
54         <tr fmclass='au' fmfield='passwd'><td/><td>Verify Password</td><td/></tr>
55         <tr fmclass='au' fmfield='first_given_name'/>
56         <tr fmclass='au' fmfield='second_given_name'/>
57         <tr fmclass='au' fmfield='family_name'/>
58         <tr fmclass='au' fmfield='suffix'/>
59         <tr fmclass='au' fmfield='alias'/>
60         <tr fmclass='au' fmfield='dob'/>
61         <tr fmclass='au' fmfield='juvenile'/>
62         <tr fmclass='au' fmfield='ident_type'/>
63         <tr fmclass='au' fmfield='ident_value'/>
64         <tr fmclass='au' fmfield='email'/>
65         <tr fmclass='au' fmfield='day_phone'/>
66         <tr fmclass='au' fmfield='evening_phone'/>
67         <tr fmclass='au' fmfield='other_phone'/>
68         <tr fmclass='au' fmfield='home_ou'/>
69         <tr fmclass='au' fmfield='profile'/>
70         <tr fmclass='au' fmfield='expire_date'/>
71         <tr fmclass='au' fmfield='net_access_level'/>
72         <tr fmclass='au' fmfield='active'/>
73         <tr fmclass='au' fmfield='barred'/>
74         <tr fmclass='au' fmfield='master_account'/>
75         <tr fmclass='au' fmfield='claims_returned_count'/>
76         <tr fmclass='au' fmfield='alert_message' wclass='dijit.form.Textarea' wstyle='height:5em'/>
77
78         <tr class='divider' type='addr'><td colspan='0'>Address</td></tr>
79         <tr fmclass='aua' fmfield='address_type' type='addr'/>
80         <tr fmclass='aua' fmfield='post_code' type='addr'/>
81         <tr fmclass='aua' fmfield='street1' type='addr'/>
82         <tr fmclass='aua' fmfield='street2' type='addr'/>
83         <tr fmclass='aua' fmfield='city' type='addr'/>
84         <tr fmclass='aua' fmfield='county' type='addr'/>
85         <tr fmclass='aua' fmfield='state' type='addr'/>
86         <tr fmclass='aua' fmfield='country' type='addr'/>
87         <tr fmclass='aua' fmfield='valid' type='addr'/>
88         <tr fmclass='aua' fmfield='within_city_limits' type='addr'/>
89
90         <tr type='addr'><td class='uedit-help'><td>Billing Address</td>
91             <td><div dojoType='dijit.form.CheckBox' name='billing-addr-widget'></div></td>
92         </tr>
93         <tr type='addr'><td class='uedit-help'><td>Mailing Address</td>
94             <td><div dojoType='dijit.form.CheckBox' name='billing-addr-widget'></div></td>
95         </tr>
96
97         <tr class='divider' id='stat-cat-divider'><td colspan='0'>Statistical Categories</td></tr>
98         <tr id='stat-cat-row-template'><td class='uedit-help'/><td name='name'/><td name='widget'/></tr>
99
100         <tr id='survey-row-template' class='divider'><td colspan='0' name='name'/></tr>
101         <tr id='survey-question-row-template'><td class='uedit-help'/><td name='question'/><td name='answers'/></tr>
102     </tbody>
103 </table>
104
105 <div id='uedit-save-div'>
106     <button dojoType='dijit.form.Button' jsId='saveButton' onClick='uEditSave'>Save</button>
107     <button dojoType='dijit.form.Button' jsId='saveCloneButton'>Save &amp; Clone</button>
108     <button dojoType='dijit.form.Button' jsId='cancelButton'>Cancel</button>
109 </div>
110
111 <!-- context help widget -->
112 <a class='hidden' id='uedit-help-template'><img src='/opac/images/advancedsearch-icon.png'></img></a>
113 <fieldset id='uedit-help-div' class='hidden'>
114     <legend id='uedit-help-field'/>
115     <div id='uedit-help-text'/>
116 </fieldset>
117
118 [% END %]
119