19 lines
439 B
HTML
19 lines
439 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="zh-CN">
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title></title>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<form>
|
||
|
|
<label for="username">用户名:</label>
|
||
|
|
<input type="text" id="username" name="username"><br><br>
|
||
|
|
<input type="checkbox" id="remember">
|
||
|
|
<label for="remember">记住用户名</label><br><br>
|
||
|
|
<input type="button" value="提交" onclick="submitForm()">
|
||
|
|
</form>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|