{% extends "admin_base.html" %}
{% block title %}Add a New Server{% endblock %}
{% block content %}
Create New Server
{% if get.disp is defined and get.disp != 1 %}
{% if get.disp == 'missing_args' %}
Not all arguments were passed by the script.
{% elseif get.disp == 'gsd_offline' %}
The GSD daemon running on the server is not on or is blocked by your firewall. Please make sure it is accessable before creating a server.
{% elseif get.disp == 's_fail' %}
The server name you entered does not meet the requirements. Must be at least 4 characters, and no more than 35. Server name can only contain a-zA-Z0-9_-
{% elseif get.disp == 'n_fail' %}
The node selected does not seem to exist.
{% elseif get.disp == 'ip_fail' %}
The selected IP does not exist.
{% elseif get.disp == 'port_fail' %}
The selected port does not exist.
{% elseif get.disp == 'port_full' %}
The selected port is already in use.
{% elseif get.disp == 'e_fail' %}
The email you entered is invalid.
{% elseif get.disp == 'p_fail' %}
The passwords you entered did not match or were not at least 8 characters.
{% elseif get.disp == 'a_fail' %}
Account with that email does not exist in the system.
{% elseif get.disp == 'm_fail' %}
You entered a non-number for Disk and/or Memory.
{% elseif get.disp == 'b_fail' %}
You entered a non-number for Backup Files and/or Disk Space.