我想在.php登录脚本中使其看起来像我的HTML网页的其余部分。
有人告诉我,我可以使用.css和这个脚本来做到这一点:
<link rel="stylesheet" type="text/css" href="style.css" />
我该怎么处理那个脚本?我需要获取html文件并使其与我的.php一起使用,以便我的登录页面与我的网站的其余部分匹配,而不仅仅是一个带有用户名和密码框的白页。感谢。
<?php include('_header.php'); ?>
<form method="post" action="index.php" name="loginform">
<label for="user_name"><?php echo WORDING_USERNAME; ?></label>
<input id="user_name" type="text" name="user_name" required />
<label for="user_password"><?php echo WORDING_PASSWORD; ?></label>
<input id="user_password" type="password" name="user_password" autocomplete="off" required />
<input type="checkbox" id="user_rememberme" name="user_rememberme" value="1" />
<label for="user_rememberme">
<?php echo WORDING_REMEMBER_ME;
答案 0 :(得分:3)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Web-page</title>
</head>
<body>
<h1><?php echo "Page title created with PHP"; ?></h1>
</body>
</html>
您可以使用style.css以任何方式设置此页面的样式。同时:使用PHP进行登录处理
答案 1 :(得分:0)