View | Details | Raw Unified | Return to bug 17855
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt (-3 / +3 lines)
Lines 31-37 jQuery.validator.addMethod( "password_match", function(value,element){ Link Here
31
          else{
31
          else{
32
               return true
32
               return true
33
          }
33
          }
34
    },  MSG_PASSWORD_MISMATCH 
34
    },  MSG_PASSWORD_MISMATCH
35
);
35
);
36
36
37
37
Lines 47-53 $(document).ready(function(){ Link Here
47
         },
47
         },
48
         messages: {
48
         messages: {
49
             password: {
49
             password: {
50
                 required: MSG_PASSWORD_MISMATCH 
50
                 required: MSG_PASSWORD_MISMATCH
51
             },
51
             },
52
         }
52
         }
53
53
Lines 172-178 $(document).ready(function(){ Link Here
172
                            </li>
172
                            </li>
173
                    </ol>
173
                    </ol>
174
                    <ol>
174
                    <ol>
175
                    <h3>OPAC/Staff Login</h3> 
175
                    <h3>OPAC/Staff Login</h3>
176
                        <li>
176
                        <li>
177
                            <input type="hidden" name="BorrowerMandatoryField" value = [% BorrowerMandatoryField %] />
177
                            <input type="hidden" name="BorrowerMandatoryField" value = [% BorrowerMandatoryField %] />
178
                            <label for="userid" class="required">Username: </label>
178
                            <label for="userid" class="required">Username: </label>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep4.tt (-1 / +1 lines)
Lines 57-63 Link Here
57
            </form>
57
            </form>
58
          <!--Implement a if statement to check if the item type was successfully created or not
58
          <!--Implement a if statement to check if the item type was successfully created or not
59
-->     [% END %]
59
-->     [% END %]
60
[% ELSE %]    
60
[% ELSE %]
61
<!--Create a item type screen 1-->
61
<!--Create a item type screen 1-->
62
       <h1 align="left"> Create a new Item type </h2>
62
       <h1 align="left"> Create a new Item type </h2>
63
        <form name="createitemform" method="post" action="onboarding.pl">
63
        <form name="createitemform" method="post" action="onboarding.pl">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep5.tt (-3 / +2 lines)
Lines 29-35 Link Here
29
                 Next up:
29
                 Next up:
30
                 <input type="submit" name="op" value="Finish"/>
30
                 <input type="submit" name="op" value="Finish"/>
31
        </form>
31
        </form>
32
[% ELSE %]    
32
[% ELSE %]
33
<!--Create a circulation rule screen 1-->
33
<!--Create a circulation rule screen 1-->
34
       <h1 align="left"> Create a new Circulation rule </h1>
34
       <h1 align="left"> Create a new Circulation rule </h1>
35
       <form name="createcirculationrule" method="post" action="onboarding.pl">
35
       <form name="createcirculationrule" method="post" action="onboarding.pl">
Lines 53-59 Link Here
53
                               <!-- <option name="categorycode" value="All">All-->
53
                               <!-- <option name="categorycode" value="All">All-->
54
                               <option value="*">All</option>
54
                               <option value="*">All</option>
55
                             [% FOREACH category IN categories %]
55
                             [% FOREACH category IN categories %]
56
                                <option name="categorycode" value = "[% category.categorycode %]"> [%category.description %]</option> 
56
                                <option name="categorycode" value = "[% category.categorycode %]"> [%category.description %]</option>
57
                             [%END%]
57
                             [%END%]
58
                             </select>
58
                             </select>
59
                        <span class="required">Required</span>
59
                        <span class="required">Required</span>
60
- 

Return to bug 17855