Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WFLY-19356] jsonp Quickstarts should have a root webpage similar to helloworld #917

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions jsonp/src/main/webapp/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--
JBoss, Home of Professional Open Source
Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual
Copyright 2024, Red Hat, Inc. and/or its affiliates, and individual
contributors by the @authors tag. See the copyright.txt in the
distribution for a full listing of individual contributors.

Expand All @@ -16,8 +16,18 @@
-->
<!DOCTYPE html>
<!-- Plain HTML page that kicks us into the app -->
<html>
<html lang="en">
<head>
<meta http-equiv="Refresh" content="0; URL=jsonp.jsf">
<meta charset="UTF-8">
<title>jsonp</title>
</head>
</html>
<body>
<div style="text-align:center">

<h1>Hello There! Welcome to WildFly!</h1>
<h2>The jsonp application has been deployed and running successfully.</h2>
<a href="jsonp.jsf" title="Go to JSONP Form">Access the jsonp application here</a>

</div>
</body>
</html>