test: integration fixtures — static site server, auto-marking conftest

This commit is contained in:
Mathew Sir Guest the best
2026-07-08 22:35:14 -06:00
parent 8ed9565c88
commit 8682ec28fe
3 changed files with 68 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<!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>