20 lines
632 B
HTML
20 lines
632 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>登录</title>
|
||
|
|
<link rel="stylesheet" href="style.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="login_page">
|
||
|
|
<h2>Journey US</h2>
|
||
|
|
<form action="/login" method="post">
|
||
|
|
<input type="text" id="username" name="username" placeholder="用户名" required><br><br>
|
||
|
|
<input type="password" id="password" name="password" placeholder="密码" required><br><br>
|
||
|
|
<input type="submit" value="登录">
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|