diff --git a/server/src/main/java/org/mitre/openid/connect/web/ManagerController.java b/server/src/main/java/org/mitre/openid/connect/web/ManagerController.java index 479dd18c5..debe19fe7 100644 --- a/server/src/main/java/org/mitre/openid/connect/web/ManagerController.java +++ b/server/src/main/java/org/mitre/openid/connect/web/ManagerController.java @@ -15,4 +15,10 @@ public class ManagerController { public String showHomePage() { return "home"; } + + @RequestMapping("/admin/manage/clients") + public String showClientManager() { + return "admin/manage/clients"; + } + } diff --git a/server/src/main/webapp/WEB-INF/tags/header.tag b/server/src/main/webapp/WEB-INF/tags/header.tag index 63eee9a48..26d969aa5 100644 --- a/server/src/main/webapp/WEB-INF/tags/header.tag +++ b/server/src/main/webapp/WEB-INF/tags/header.tag @@ -15,6 +15,9 @@ + + + @@ -24,9 +27,6 @@ - +
+ + +
+ +
+
+ +
+ + +
+
+ http:// + +
+ Url to be redirected +
+
+ +
+ + +
+ + + Note: Grant type help text. + +
+
+ +
+ + +
+ + + Please enter scopes separated by commas + +
+
+ +
+ + +
+ +
+
+ + + +
+ + +
+ +
+
+ +
+ + +
+ + + Note: Labels surround all the options for much larger click areas and a more usable form. + +
+
+ + + + + + + +
+ +
+ +
+

Welcome, User Name!

+ +

Can't remember your passwords? Tired of filling out registration forms? + OpenID is a safe, faster, and easier way to log in to + web sites.

+ +

Learn more »

+
+ +
+
+

About

+ +

Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, + tortor + mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada + magna + mollis euismod. Donec sed odio dui.

+ +

More »

+
+
+

Contact

+ +

Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, + tortor + mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada + magna + mollis euismod. Donec sed odio dui.

+ +

Email »

+
+ +
+
+ +
+
+

Current Statistics

+ +

You'll be keen to know that there have been 4720 users of this + system who have logged in to + 203 + total sites, for a total of 6224 site approvals.

+ +
+
+ + +
+
+ diff --git a/server/src/main/webapp/resources/js/app.js b/server/src/main/webapp/resources/js/app.js new file mode 100644 index 000000000..c5451c320 --- /dev/null +++ b/server/src/main/webapp/resources/js/app.js @@ -0,0 +1,17 @@ +$(function () { + + var ExampleOpenIdClient = { + name:"A name", + redirectURL:"http://myURL.domain", + grantType:["my grant type 1", "my grant type 2"], + scope:["scope 1", "scope 2"], + authority:"my authority", + description:"my description", + refreshTokens:false + }; + + console.log(tmpl('client_tmpl',ExampleOpenIdClient)); + + $('#client-table').append(tmpl('client_tmpl',ExampleOpenIdClient)); + +}); \ No newline at end of file