{% extends "base.html" %} {% block title %}Login - NetViz{% endblock %} {% block content %}

Sign in to your account

Or register a new account

{{ form.csrf_token }}
{{ form.username(class="appearance-none rounded-none relative block w-full px-3 py-2 border border-gray-300 dark:border-gray-700 placeholder-gray-500 dark:placeholder-gray-400 text-gray-900 dark:text-white dark:bg-gray-800 rounded-t-md focus:outline-none focus:ring-primary focus:border-primary focus:z-10 sm:text-sm", placeholder="Username") }} {% if form.username.errors %}

{{ form.username.errors[0] }}

{% endif %}
{{ form.password(class="appearance-none rounded-none relative block w-full px-3 py-2 border border-gray-300 dark:border-gray-700 placeholder-gray-500 dark:placeholder-gray-400 text-gray-900 dark:text-white dark:bg-gray-800 rounded-b-md focus:outline-none focus:ring-primary focus:border-primary focus:z-10 sm:text-sm", placeholder="Password") }} {% if form.password.errors %}

{{ form.password.errors[0] }}

{% endif %}
{{ form.remember_me(class="h-4 w-4 text-primary focus:ring-primary border-gray-300 dark:border-gray-700 rounded") }}
{% endblock %}