{% extends "base.html" %} {% block title -%} New User Creation {% endblock title %} {% block content %}
{%if current_user.is_admin() %} Enter in form: "username, password"
{{ form.hidden_tag() }} {{ input(form.value, placeholder=default, class="span7", autocomplete="off") }}
{% else %} You do not have permission to access this functionality. {% endif %}
{% endblock content%}