Koha/koha-tmpl/intranet-tmpl/default/zh-TW/auth.tmpl

50 lines
1.7 KiB
Cheetah
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- TMPL_IF NAME="nopermission" -->
<!-- This is what is displayed if user doesn't have permission -->
<h2>對不起KOHA認為你沒有權限來這一頁。</h2>
<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="timed_out" -->
<!-- This is what is displayed if login has timed out -->
<h2>對不起,您的登入已逾時,請重新登入。</h2>
<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="different_ip" -->
<!-- This is what is displayed if user's IP has changed -->
<h2>您的IP位址改變了請重新登入。</h2>
<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="invalid_username_or_password" -->
<!-- This is what is displayed if the username or password doesn't work -->
<h2>您輸入了錯誤的使用者名稱或密碼。請重試。</h2>
<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="loginprompt" -->
<!-- login prompt time-->
<center>
<form action='<!-- TMPL_VAR NAME="url" -->' method="post">
<!-- TMPL_LOOP NAME="INPUTS" -->
<input type="hidden" name='<!-- TMPL_VAR NAME="name" -->' value='<!-- TMPL_VAR NAME="value" -->'>
<!-- /TMPL_LOOP -->
<table border="0" cellpadding="10" cellspacing="0" width="60%">
<tr><td align="center" valign="top">
<table border="0" bgcolor="#dddddd" cellpadding="10" cellspacing="0">
<tr><th colspan="2"><font size="+2">登入Koha</font></th></tr>
<tr><td>借書證號碼:</td><td><input name="userid"></td></tr>
<tr><td>密碼:</td><td><input type="password" name="password"></td></tr>
<tr><td colspan="2" align="center"><input type="submit" value="登入"></td></tr>
</table>
</td><td align="center" valign="top">
</td></tr>
</table>
</form>
<!-- /TMPL_IF -->