注冊頁面注冊
<html>
<head>
<title>注冊頁面</title>
</head>
<body>
<h1>注冊</h1>
<form>
<p>
<label for="username">用戶名:</label>
<input type="text" id="username" name="username" />
</p>
<p>
<label for="password">密碼:</label>
<input type="password" id="password" name="password" />
</p>
<p>
<label for="confirm_password">確認(rèn)密碼:</label>
<input type="password" id="confirm_password" name="confirm_password" />
</p>
<p>
<label for="email">電子郵件:</label>
<input type="email" id="email" name="email" />
</p>
<p>
<label for="phone">電話:</label>
<input type="tel" id="phone" name="phone" />
</p>
<p>
<label for="birthdate">出生日期:</label>
<input type="date" id="birthdate" name="birthdate" />
</p>
<p>
<input type="submit" value="注冊" />
</p>
</form>
</body>
</html>