Files
go_blog/web/admin/login.tmpl

20 lines
475 B
Cheetah
Raw Normal View History

2025-06-09 17:59:19 +08:00
<!DOCTYPE html>
<html>
<head>
<title>{{.Title}}</title>
</head>
<body>
<h1>{{.Title}}web</h1>
<form action="/admin/login" method="post">
<div>
<label>用户名:</label>
<input type="text" name="username" required>
</div>
<div>
<label>密码:</label>
<input type="password" name="password" required>
</div>
<button type="submit">登录</button>
</form>
</body>
</html>