我正在嚴格設置一個純HTML/PHP(執行include()
)網站用於演示目的。我想根據所使用的憑證製作一個功能登錄頁面,用於重定向用戶。基於使用憑據的基本用戶重定向
例如:如果使用的用戶/傳球組合分別是「editor」和「123456」,那麼他將被重定向到/editor.html
。同樣的「管理員」和「用戶」的成員...
當然,我已經在HTML中的基本登錄佈局,但我怎麼能使它的功能呢?我怎樣纔能有效實現這一目標?
非常感謝您的寶貴時間, 問候
HTML代碼
<div id="pane-login" class="panel-body active">
<div class="form-group">
<div class="inputer">
<div class="input-wrapper">
<input type="text" class="form-control" placeholder="User">
</div>
</div>
</div>
<!--.form-group-->
<div class="form-group">
<div class="inputer">
<div class="input-wrapper">
<input type="password" class="form-control" placeholder="Pass">
</div>
</div>
</div>
<!--.form-group-->
<div class="form-buttons clearfix">
<label class="pull-left">
<input type="checkbox" name="remember" value="1">
Remember</label>
<button type="submit" onclick="location.href='index.php';" class="btn btn-success pull-right">Enter</button>
</div>
<!--.form-buttons-->
</div>
請在這裏發佈你的html代碼請點擊這裏 –
Hi there。只是做了;) –