mirror of
https://git.zavage.net/Zavage-Software/wabot.git
synced 2026-07-21 13:06:08 -06:00
18 lines
524 B
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>
|