21 lines
548 B
HTML
21 lines
548 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Submit</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<form action="/submit" method="POST">
|
|
<label for="forminput1">forminput1</label>
|
|
<input type="text" name="forminput1" id="forminput1" required>
|
|
<label for="forminput2">forminput2</label>
|
|
<input type="text" name="forminput2" id="forminput2" required>
|
|
<button> Submit </button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|