diff options
| author | Bobby <[email protected]> | 2022-07-29 23:08:35 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-07-29 23:08:35 +0530 |
| commit | a3f45e1dd407affac3fac58a006674333c7fc0a8 (patch) | |
| tree | 21f307d950c99d44bde74d139c43cff35094f460 | |
| parent | b14dc2abc25e59e66237fef8d9c2b55ad9592dcf (diff) | |
| download | thatcomputerscientist-a3f45e1dd407affac3fac58a006674333c7fc0a8.tar.xz thatcomputerscientist-a3f45e1dd407affac3fac58a006674333c7fc0a8.zip | |
Set UserProfile/location::maxlength = 50
| -rw-r--r-- | blog/templates/account.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blog/templates/account.html b/blog/templates/account.html index fb33478b..a1687cc8 100644 --- a/blog/templates/account.html +++ b/blog/templates/account.html @@ -45,7 +45,7 @@ <label for="gravatarEmail">Gravatar Email</label> <input type="text" name="gravatarEmail" id="gravatarEmail" value="{{ user_profile.gravatar_email }}" placeholder="Gravatar Email" /> <label for="location">Location</label> - <input type="text" name="location" id="location" value="{{ user_profile.location }}" placeholder="Location" /> + <input type="text" name="location" id="location" value="{{ user_profile.location }}" placeholder="Location" maxlength="50"/> <label for="bio">Bio</label> <textarea name="bio" id="bio" placeholder="Bio">{{ user_profile.bio }}</textarea> <label for="isPublic">Account Visibility</label> |
