blob: 9984dc692f33f117397b7cca91df6cce23b9cbd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{* $Header$ *}
<h1>{$title|default:"You must be logged in as an administrator to run the installer."}</h1>
{form class="form-horizontal" name="login" legend="Please sign in to continue"}
<div class="control-group">
{formfeedback error="$error"}
{formlabel label="Username or Email" for="user"}
{forminput}
<input type="text" name="user" id="user" size="25" />
{formhelp note=""}
{/forminput}
</div>
<div class="control-group">
{formlabel label="Password" for="pass"}
{forminput}
<input type="password" name="pass" id="pass" size="25" />
{/forminput}
</div>
<div class="control-group">
{forminput}
<input type="submit" class="btn btn-primary" name="signin" value="{tr}Log in to {$gBitSystem->getConfig('site_title')|default:"this site"}{/tr}" />
{/forminput}
</div>
{/form}
<div class="center">
<a href="http://www.bitweaver.org/">
<img src="{$smarty.const.INSTALL_PKG_URL}css/images/bitweaver_logo-trans.png" width="121" height="121" alt="bitweaver logo" title="Click here to visit the upgrade instructions" />
</a>
</div>
|