wabot/tests/fixtures/login.html

18 lines
524 B
HTML

<!DOCTYPE html>
<html>
<head><title>Login</title></head>
<body>
<h1 id="page-title">Test Login</h1>
<form action="/welcome.html" method="get">
<input type="text" id="username" name="username">
<select id="state" name="state">
<option value="">--</option>
<option value="CO">Colorado</option>
<option value="NM">New Mexico</option>
</select>
<input type="checkbox" id="agree" name="agree" value="yes">
<button type="submit" id="submit-btn">Sign in</button>
</form>
</body>
</html>