diff --git a/templates/workspaces/projects/new.html b/templates/workspaces/projects/new.html index c140023b..8f71d9ad 100644 --- a/templates/workspaces/projects/new.html +++ b/templates/workspaces/projects/new.html @@ -1,19 +1,74 @@ {% extends "workspaces/base.html" %} {% from "components/alert.html" import Alert %} +{% from "components/icon.html" import Icon %} +{% from "components/modal.html" import Modal %} +{% from "components/text_input.html" import TextInput %} {% block workspace_content %} -{% set modalName = "newProjectConfirmation" %} -{% if request.args.get("newWorkspace") %} - {{ Alert('Workspace created!', - message="\ -
You are now ready to create projects and environments within the JEDI Cloud.
- ", - level='success' - ) }} -{% endif %} + {% set modalName = "newProjectConfirmation" %} + {% if request.args.get("newWorkspace") %} + {{ Alert('Workspace created!', + message="\ +You are now ready to create projects and environments within the JEDI Cloud.
+ ", + level='success' + ) }} + {% endif %} -{% include "fragments/edit_project_form.html" %} +