Files
gemini-cli/integration-tests/test-fixtures/multi-step/step1.html

17 lines
536 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Test Fixture - Step 1</title>
</head>
<body>
<h1 id="step-heading">Step 1: Enter Your Details</h1>
<p id="step-description">Please provide your name to continue.</p>
<form id="step1-form" action="/multi-step/step2.html" method="GET">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required />
<button type="submit" id="next-btn">Next Step</button>
</form>
</body>
</html>