课程代码

This commit is contained in:
zpooi
2025-12-03 23:08:39 +08:00
commit 290f629d2c
63 changed files with 7065 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>注册</title>
<link rel="stylesheet" href="./register.css">
</head>
<body>
<div class="form-container">
<h2>注册</h2>
<form class="form">
<div>
<label for="username">用户名:</label>
<input type="text" name="username" placeholder="请输入用户名" required><br>
</div>
<div>
<label for="password">密码:</label>
<input type="password" name="password" placeholder="请输入密码" required><br>
</div>
<div>
<label for="password">密码:</label>
<input type="password" name="password" placeholder="请再次输入密码" required><br>
</div>
<div>
<label class="user-type-label">用户类型:</label>
<input type="radio" name="userType" value="1" checked>普通用户
<input type="radio" name="userType" value="2">管理员
</div>
<button type="submit"><a href="../test5/index.html">注册</a></button>
</form>
</form>
</div>
</body>
</html>