29 lines
914 B
HTML
29 lines
914 B
HTML
|
<!DOCTYPE>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>BookSystem 安装</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
<style>
|
||
|
div.login_panel
|
||
|
{
|
||
|
text-align:center;
|
||
|
margin: auto;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="login_panel">
|
||
|
<p>欢迎使用BookSystem安装程序!</p>
|
||
|
<form id="login_panel" action="http://127.0.0.1/cgi-bin/bs-install.cgi" method=post>
|
||
|
<p>数据库地址: <input type="text" value="127.0.0.1" name="dbaddr"></p>
|
||
|
<p>数据库端口: <input type="text" value="3306" name="dbport"></p>
|
||
|
<p>数据库用户名: <input type="text" value="root" name="dbuser"></p>
|
||
|
<p>数据库密码: <input type="password" name="dbpass"></p>
|
||
|
<p>数据库名: <input type="text" name="dbname"></p>
|
||
|
<p>数据表前缀: <input type="text" value="bs" name="tbprefix"></p>
|
||
|
<p><input type="submit" value="Install!"></p>
|
||
|
</form>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|