| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"></meta> |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"></meta> |
| <meta name="viewport" content="width=device-width, initial-scale=1"></meta> |
| |
| <link rel="stylesheet" type="text/css" href="/ajax/libs/bootstrap/3.3.2/css/bootstrap.min.css"></link> |
| |
| <title>OSEE - OAuth2 Registration Code</title> |
| |
| <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> |
| <!--[if lt IE 9]> |
| <script src="/ajax/libs/html5shiv/3.7.2/html5shiv.min.js"></script> |
| <script src="/ajax/libs/respond/1.4.2/respond.min.js"></script> |
| <![endif]--> |
| </head> |
| <body> |
| <div class="container"> |
| <h1>OSEE - OAuth2 Registration Code</h1> |
| <div class="media"> |
| <a href="#" rel="tooltip" class="pull-left" title="Logged in as: <?loggedInAs?>"><span class="badge">i</span></a> |
| <div class="media-body"> |
| <h3 class="media-heading"> |
| Please enter the following registration code into your application within the next <b> <?expiresIn?> |
| </b>. |
| </h3> |
| </div> |
| </div> |
| <dl class="dl-horizontal well"> |
| <dt>Registration Code:</dt> |
| <dd> |
| <?authorizationCode?> |
| </dd> |
| <dt>Client Id:</dt> |
| <dd> |
| <?clientId?> |
| </dd> |
| </dl> |
| </div> |
| </body> |
| </html> |