14 lines
319 B
HTML
14 lines
319 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title>Hello, World!</title>
|
|
</head>
|
|
<body>
|
|
<form action="user" method="post">
|
|
<input name="name" type="text">
|
|
<input type="submit" value="Set Name">
|
|
</form>
|
|
</body>
|
|
</html>
|