21 lines
523 B
HTML
21 lines
523 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>小司的个人网站</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>小司的个人网站</h1>
|
|
<p>大家好!欢迎来到我的个人网站!</p>
|
|
<form action="/login" method="POST">
|
|
<label for="username">用户名:</label>
|
|
<input type="text" name="username" value="">
|
|
<label for="password">密码:</label>
|
|
<input type="password" name="password" value="" placeholder="******">
|
|
<input type="submit" value="登录">
|
|
</form>
|
|
</body>
|
|
|
|
</html>
|