Example
Example
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Form Buttons</title>
5
</head>
6
<body>
7
8
<h2>Complete Registration</h2>
9
<form action="/submit" method="post">
10
<p>
11
<label for="name">Name:</label>
12
<input type="text" id="name" name="name">
13
</p>
14
<button type="submit">Submit Form</button>
15
<button type="reset">Reset Form</button>
16
</form>
17
18
</body>
19
</html>
