diff options
author | John Nduli | 2024-08-29 10:52:06 +0300 |
---|---|---|
committer | BonfaceKilz | 2024-08-29 15:31:34 +0300 |
commit | f9cbfadca132f62eeca6c2eb10b7f02e05fb9a6b (patch) | |
tree | 3f562626176fe396c7e1f7cf2ad3bc2a530f393c /gn2/wqflask/templates | |
parent | 93a870ad484f641e96c04675e5f2aaad4a12c2d5 (diff) | |
download | genenetwork2-f9cbfadca132f62eeca6c2eb10b7f02e05fb9a6b.tar.gz |
refactor: drop monad_requests and mark required fields
Diffstat (limited to 'gn2/wqflask/templates')
-rw-r--r-- | gn2/wqflask/templates/wiki/edit_wiki.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gn2/wqflask/templates/wiki/edit_wiki.html b/gn2/wqflask/templates/wiki/edit_wiki.html index cee874a3..242456c4 100644 --- a/gn2/wqflask/templates/wiki/edit_wiki.html +++ b/gn2/wqflask/templates/wiki/edit_wiki.html @@ -25,7 +25,7 @@ <input type="hidden" name="symbol" value="{{ content["symbol"] }}"> <div class="form-group"> <label for="reason" class="col-sm-2">Reason for Modification: </label> - <input type="text" name="reason" size=45 maxlength=100> + <input type="text" name="reason" size=45 maxlength=100 required> </div> <div class="form-group"> <label for="species" class="col-sm-2">Species: </label> @@ -55,11 +55,11 @@ </div> <div class="form-group"> <label for="comment" class="col-sm-2">Text: </label> - <textarea name="comment" rows=5 cols=60>{{ content["comment"] }}</textarea> + <textarea name="comment" rows=5 cols=60 required>{{ content["comment"] }}</textarea> </div> <div class="form-group"> <label for="email" class="col-sm-2">Email: </label> - <input type="text" name="email" value=""> + <input type="text" name="email" value="" required> </div> <div class="form-group"> <label for="usercode" class="col-sm-2">User Code: </label> |