Koha/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep1.tt
Lucas Gass 3b273de577 Bug 25744: replace <b> with <strong> in the staff interface
This patch set attempts to replace all the <i> tags with <em> and all
the <b> tags with <strong> in the staff interface.
I attempted to get all the templates, includes, and xslt files.

To test:

1. Review the changes as best as possible, looking for mistakes.
2. grep for <i> and <b> in the modules, includes, and xslt folders. You should get nothing/
3. If you grep '<\/i>' you should only see instances of Font Awesome.
4. If you grep '<\/b>' you should only see instances where caret is used.

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2020-09-18 11:08:35 +02:00

42 lines
2.2 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Web installer &rsaquo; Create a library</title>
[% INCLUDE 'installer-doc-head-close.inc' %]
</head>
<body id="installer" class="installer">
<div class="container-fluid">
<div class="row">
<div id="onboarding-step1" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 col-md-offset-2">
<h1 id="logo"><a href="#">Koha</a></h1>
<h2>Web installer &rsaquo; Create a library</h2>
[% INCLUDE 'onboarding_messages.inc' %]
<form name="LibraryCreation" method="post" action="onboarding.pl">
<fieldset class="rows" >
<input type="hidden" name="step" value="1"/>
<input type="hidden" name="op" value="add_validate_library"/>
<ol>
<li>
<label for="branchcode" class="required">Library code: </label>
<input type="text" pattern="[0-9A-Za-z]{1,10}" name="branchcode" id="branchcode" size="10" maxlength="10" value="" class="required" required="required" />
<span class="required">Required</span>
</li>
<li>
<label for="branchname" class="required">Name: </label>
<input type="text" name="branchname" id="branchname" size="42" class="required" required="required">
<span class="required">Required</span>
</li>
</ol>
<p>To add another library and for more settings, go to:
<span class="breadcrumbs"> Administration <strong>&rsaquo;</strong> Libraries and groups </span>
</p>
<input type="submit" class="btn btn-primary" value="Submit" />
</fieldset>
</form>
</div> <!-- / #onboarding-step1 -->
</div> <!-- / .row -->
</div><!-- / .container-fluid -->
[% INCLUDE 'installer-intranet-bottom.inc' %]