From fbbd3e93d601085ceb748791627b6315d64a34e8 Mon Sep 17 00:00:00 2001 From: raj-830803 Date: Wed, 19 Aug 2026 11:02:27 +0000 Subject: [PATCH] Added templates folder to support app.py for rendering UI --- alm/ui-examples/templates/page1.html | 69 ++++++++++++++++++++++++ alm/ui-examples/templates/page2.html | 80 ++++++++++++++++++++++++++++ 2 files changed, 149 insertions(+) create mode 100644 alm/ui-examples/templates/page1.html create mode 100644 alm/ui-examples/templates/page2.html diff --git a/alm/ui-examples/templates/page1.html b/alm/ui-examples/templates/page1.html new file mode 100644 index 0000000000..8922eb11ef --- /dev/null +++ b/alm/ui-examples/templates/page1.html @@ -0,0 +1,69 @@ + + + + + + + + + Generate API + + + + + +
+

Market Place Integration

+
+ +
+

Step 1: Generate API

+ +
+ +
+ + +
+ +
+ + +
+ + +
+ + {% if action_result %} +
+ + {{ action_result }} +
+ {% endif %} + + {% if error %} +
+ Deployment Failed: {{ error }} +
+ {% endif %} + +
+ + Next Page → +
+ + + + \ No newline at end of file diff --git a/alm/ui-examples/templates/page2.html b/alm/ui-examples/templates/page2.html new file mode 100644 index 0000000000..fb427aee94 --- /dev/null +++ b/alm/ui-examples/templates/page2.html @@ -0,0 +1,80 @@ + + + + + + + + + + GCP Region Selector + + + + + + +
+

Market Place Integration

+
+ +
+ ← Back to Step 1 +

Apigee to ALM

+ +
+
+ + +
+ +
+ + +
+
+ + {% if api_response and not api_response.error %} +
+ + Successfully configured for {{ selected_region }} +
+ {% endif %} + + {% if operation_state %} +
+ + State: {{ operation_state }} +
+ {% endif %} +
+ + + + \ No newline at end of file