mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-05 10:51:12 -07:00
17 lines
536 B
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>
|