aboutsummaryrefslogtreecommitdiff
path: root/http_handle_login.go (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-04-05templates shall no longer be a global variableRunxi Yu1-8/+8
2025-04-05web: Separate HTTP error pages into its own packageRunxi Yu1-4/+5
2025-04-05Unexport fields in Serverv0.1.24Runxi Yu1-3/+3
2025-04-05Use cmd/forge for the entry pointRunxi Yu1-5/+5
2025-04-05database shall no longer be a global variableRunxi Yu1-2/+2
2025-04-05config shall no longer be a global variableRunxi Yu1-2/+2
2025-03-31Add descriptive comments to most Go functionsRunxi Yu1-0/+1
2025-03-31Replace FileContributor with FileCopyrightTextRunxi Yu1-1/+1
2025-03-22Use a custom errPage500Runxi Yu1-4/+4
2025-03-22Variable name lengthsRunxi Yu1-16/+16
2025-03-22Initial lintingRunxi Yu1-3/+2
2025-03-19Remove underscores from Go code, pt 4Runxi Yu1-18/+18
2025-03-05*: Replace some := with varRunxi Yu1-13/+22
2025-03-03Add SPDX license headers to all Go filesRunxi Yu1-0/+3
2025-02-19all: Use COALESCE to handle some nullable database fieldsRunxi Yu1-1/+6
2025-02-18*.go: Add some comments for docsRunxi Yu1-0/+3
2025-02-14http_*.go: Abstract out render_template for deduplicationRunxi Yu1-13/+3
2025-02-13http_{server,handle_login}.go: Fix missing error handlingRunxi Yu1-0/+5
2025-02-13http_handle_*.go: Fix http.Error callsRunxi Yu1-6/+6
Previously when I was converting the fmt.Fprintln calls into http.Error, there was a mistake in my sed command which caused some of the messages to have double colons. This should fix them.
2025-02-13http_*.go: Use http.ErrorRunxi Yu1-6/+6
2025-02-13login: Set cookieRunxi Yu1-0/+36
2025-02-13login: Implement password validationRunxi Yu1-2/+39
2025-02-13http_handle_*.go: Use fmt.Fprintln, not w.WriteRunxi Yu1-1/+2
2025-02-13login: Stub login pageRunxi Yu1-0/+18