Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong form entry name in browserlike.md #495

Merged
merged 1 commit into from
Jul 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion http/browserlike.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ In our imaginary case, the form tag looks like this:
<input type="hidden" name="id" value="bc76">
</form>

There are three fields of importance. **text**, **secret** and **id**. The
There are three fields of importance. **user**, **secret** and **id**. The
last one, the id, is marked `hidden` which means that it does not show up in
the browser and it is not a field that a user fills in. It is generated by the
site itself, and for your curl login to succeed, you need extract that value
Expand Down
Loading