{% extends "admin_base.html" %}
{% block title %}Add a New Node{% endblock %}
{% block content %}
Add New Node
{% if get.disp is defined and get.disp != 1 %}
{% if get.disp == 'agree_warn' %}
You must agree to the node warning before we can create the node.
{% elseif get.disp == 'missing_args' %}
Not all arguments were passed by the script.
{% elseif get.disp == 'n_fail' %}
The node name does not meet the requirements (1-15 characters, a-zA-Z0-9_.-).
{% elseif get.disp == 'url_fail' %}
The node URL provided is not valid. URLs must end with a trailing slash and must be a subdomain without any additional folders. (e.g. http://node.example.com/)
{% elseif get.disp == 'ip_fail' %}
The IP addresses provided were not valid.
{% elseif get.disp == 'dir_fail' %}
The directory you entered was not valid. Must end with a trailing slash.
{% elseif get.disp == 'ip_port_space' %}
Unable to allocate the ports you inputted.
{% elseif get.disp == 'port_fail' %}
The ports you entered were not in a valid format.
{% endif %}