LifeType 中文開發論壇

開發 => 模版設計 => 主題作者是: oc 於 一月 15, 2005, 12:39:31 上午



主題: 發問:把管理介面的帳號和密碼輸入框放到pLo
作者: oc一月 15, 2005, 12:39:31 上午
把管理介面的帳號和密碼輸入框放到pLog首頁上,我知道有人做過,不過我卻找不到在哪裡有教學,有人知道嗎?請幫忙,感謝。


主題: 發問:把管理介面的帳號和密碼輸入框放到pLo
作者: bcse一月 15, 2005, 01:54:06 上午
這個在 WordpLog 中有,你可以下載來參考。原始碼如下:
程式碼:
<form id="loginForm" method="post" action="{$url->getBaseUrl()}/admin.php">
<div>
<label for="userName">{$locale->tr("username")}</label>
<input type="text" name="userName" id="userName" value="" /><br />
<label for="userPassword">{$locale->tr("password")}</label>
<input type="password" name="userPassword" id="userPassword" /><br />
<input type="submit" name="Login" value="{$locale->tr("login")}" />
<input type="hidden" name="op" value="Login" />
</div>
</form>


這是最陽春的作法, WordpLog 另外加了登出功能。


主題: 發問:把管理介面的帳號和密碼輸入框放到pLo
作者: tyyx一月 15, 2005, 04:13:39 下午
plog-0.3.2\templates\summary\index.template
程式碼:

.......
<div id="column-right">
    <h2>Log-in</h2>
    <form id="loginForm" method="post" action="admin.php">
    <fieldset>
        <div class="field">
            <label for="userName">{$locale->tr("username")}</label><br />
            <input type="text" tabindex="1" name="userName" id="userName" value="" size="12" maxlength="50" />
        </div>
        <div class="field">
            <label for="userPassword">{$locale->tr("password")}</label><br />
            <input type="password" tabindex="2" name="userPassword" id="userPassword" size="12" maxlength="50" />
        </div>
        <br />
        <input type="submit" name="Login" value="{$locale->tr("login")}" />
        <input type="hidden" name="op" value="Login" />
    </fieldset>
    </form>

 :-P


主題: 發問:把管理介面的帳號和密碼輸入框放到pLo
作者: oc一月 15, 2005, 07:56:26 下午
成功了,感謝兩位。兩個代碼都可行,最後用了tyyx的(不過得補上完結的「 </div> 」,畢竟看起來比較美觀一點,呵呵。