CZ_OpenSpice/Server/template/index.html

18 lines
434 B
HTML
Raw Normal View History

2021-01-20 12:01:46 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello, World !</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
<p>当前用户 {{user}} </p>
<form action="/spice" method="get">
<div><input type="submit" value="spice"></div>
</form>
<form action="/logout" method="get">
<div><input type="submit" value="退出"></div>
</form>
</body>
</html>