This repository has been archived on 2021-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
DBHomework/web/booksys/install.html
kiritow 4d0aad04ff Add Web Resource to Repo.
And I am going to the cyber bar as I forgot to take my power supplier.
2017-11-19 15:43:51 +08:00

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>