I'm new to Flask and I am trying to make a simple signup page. Here is the code-
{% extends 'layout.html' %}
{% block body %}
<div class="container">
<form method="post" action="{{ url_for('signup') }}">
<label for="user">Username </label>
<input type="text" id="user" name="user" onblur='NameCheck()'>
<i id='acceptIC' class="fas fa-check-circle"></i>
<label for="pas">Password </label>
<input type="password" id="pas" name="pas">
<label for="mail">Email ID </label>
<input type="email" id="mail" name="mail">
<button type="submit">Signup</button>
</form>
</div>
{% endblock %}
I wish to display a font awesome icon next to the username as soon as it looses focus, this icon is green if the username is available (database in MongoDB) and red if it isn't.