Although it may seem simple, I am new to this and could use some help. I have an input box:
<input type="text" name="username" id="username" class="form-control" value="{{username}}">
<div class="error" id="nameErr"></div>
I have a function that displays the message "username cannot be blank" in the error div
if the input box for username is empty. It is currently working, but the message appears to the right of the input box when it should be below. Can someone help me fix this issue? Thank you!