Rename username field on Member Directory

This commit is contained in:
Noah Petherbridge 2024-06-15 17:10:43 -07:00
parent 42aeb60853
commit 6ac121b345
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ func Search() http.HandlerFunc {
// Search filters.
var (
isCertified = r.FormValue("certified")
username = r.FormValue("username") // username search
username = r.FormValue("name") // username search
gender = r.FormValue("gender")
orientation = r.FormValue("orientation")
maritalStatus = r.FormValue("marital_status")

View File

@ -117,7 +117,7 @@
<div class="field">
<label class="label">Name or username:</label>
<input type="text" class="input"
name="username"
name="name"
autocomplete="off"
value="{{$Root.EmailOrUsername}}">
</div>