Example
Example
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>HTML Form</title>
5
</head>
6
<body>
7
8
<h2>User Registration Form</h2>
9
<form action="/register-user" method="post">
10
<p>
11
<label for="username">Username:</label>
12
<input type="text" id="username" name="username">
13
</p>
14
<button type="submit">Create Account</button>
15
</form>
16
17
</body>
18
</html>
