24 lines
616 B
Cheetah
24 lines
616 B
Cheetah
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{.Title}}</title>
|
|
</head>
|
|
<body>
|
|
<h1>{{.Title}}web下</h1>
|
|
<form action="/register" method="post">
|
|
<div>
|
|
<label>用户名:</label>
|
|
<input type="text" name="username" required>
|
|
</div>
|
|
<div>
|
|
<label>密码:</label>
|
|
<input type="password" name="password" required>
|
|
</div>
|
|
<div>
|
|
<label>确认密码:</label>
|
|
<input type="password" name="confirm_password" required>
|
|
</div>
|
|
<button type="submit">注册</button>
|
|
</form>
|
|
</body>
|
|
</html> |