Changeset 10612 for main/waeup.cas/trunk/waeup/cas/templates
- Timestamp:
- 10 Sep 2013, 16:27:26 (11 years ago)
- Location:
- main/waeup.cas/trunk/waeup/cas/templates
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.cas/trunk/waeup/cas/templates/login_service_confirm.html
r10413 r10612 1 <html> 1 <!DOCTYPE html> 2 <html lang="en"> 2 3 <head> 3 4 <title>WAeUP Central Authentication Service</title> 5 PART_HEADER 4 6 </head> 5 7 <body> 6 <p>CAS login successful</p> 7 <p>Click <a href="SERVICE_URL">here</a> 8 to access the service you requested</p> 8 <div class="container"> 9 <h2 class="text-center">WAeUP Central Authentication Service</h2> 10 11 <div class="jumbotron"> 12 <h1>Logged in</h1> 13 <p class="lead">To access the service you requested, please</p> 14 <p class="text-center"> 15 <a href="SERVICE_URL" class="btn btn-lg btn-success">click here</a> 16 </p> 17 </div> 18 </div> 19 PART_FOOTER 9 20 </body> 10 21 </html> -
main/waeup.cas/trunk/waeup/cas/templates/login_service_redirect.html
r10395 r10612 1 <html> 1 <!DOCTYPE html> 2 <html lang="en"> 2 3 <head> 3 4 <title>WAeUP Central Authentication Service</title> … … 5 6 window.location.href="SERVICE_URL" 6 7 </script> 8 PART_HEADER 7 9 </head> 8 10 <body> 9 11 <noscript> 10 <p>CAS login successful</p> 11 <p>Click <a href="SERVICE_URL">here</a> 12 to access the service you requested</p> 12 <h2 class="text-center">WAeUP Central Authentication Service</h2> 13 <div class="container"> 14 <div class="jumbotron"> 15 <h1>Logged in</h1> 16 <p class="lead">Authentication succeeded.</p> 17 <p class="lead">Please 18 <a href="SERVICE_URL" class="btn btn-lg btn-success">click here</a> 19 to access the service you requested.</p> 20 </div> 21 </div> 13 22 </noscript> 23 PART_FOOTER 14 24 </body> 15 25 </html> -
main/waeup.cas/trunk/waeup/cas/templates/login_successful.html
r10398 r10612 1 <html> 1 <!DOCTYPE html> 2 <html lang="en"> 2 3 <head> 3 4 <title>WAeUP Central Authentication Services</title> 5 PART_HEADER 4 6 </head> 5 7 <body> 6 <div>MSG_TEXT</div> 7 <h1>Logged in</h1> 8 <div>You successfully initiated single sign-on!</div> 8 <div class="container"> 9 <h2 class="text-center">WAeUP Central Authentication Service</h2> 10 <div class="jumbotron"> 11 <div id="msg">MSG_TEXT</div> 12 <h1>Logged in</h1> 13 <p>You successfully initiated single sign-on!</p> 14 </div> 15 </div> 16 PART_FOOTER 9 17 </body> 10 18 </html> -
main/waeup.cas/trunk/waeup/cas/templates/logout.html
r10415 r10612 1 <html> 1 <!DOCTYPE html> 2 <html lang="en"> 2 3 <head> 3 4 <title>WAeUP Central Authentication Service</title> 5 PART_HEADER 4 6 </head> 5 7 <body> 6 <p>You have been logged out.</p> 8 <div class="container"> 9 <h2 class="text-center">WAeUP Central Authentication Service</h2> 10 <div class="jumbotron"> 11 <div id="msg">MSG_TEXT</div> 12 <h1>Logged out</h1> 13 <p class="lead">You have been logged out.</p> 14 <p class="lead">Thanks for using WAeUP services!</p> 15 </div> 16 </div> 17 PART_FOOTER 7 18 </body> 8 19 </html> -
main/waeup.cas/trunk/waeup/cas/templates/logout_url.html
r10415 r10612 1 <html> 1 <!DOCTYPE html> 2 <html lang="en"> 2 3 <head> 3 4 <title>WAeUP Central Authentication Service</title> 5 PART_HEADER 4 6 </head> 5 7 <body> 6 <p>You have been logged out.</p> 7 <p>The application you just logged out of has provided a link it 8 would like you to follow. Please <a href="URL_HREF">click here</a> 9 to access URL_HREF. 8 <div class="container"> 9 <h2 class="text-center">WAeUP Central Authentication Service</h2> 10 <div class="jumbotron"> 11 <h1>Logged out</h1> 12 <p class="lead">You have been logged out.</p> 13 <p class="lead">The application you just logged out of has 14 provided a link it would like you to follow. Please 15 <a href="URL_HREF" class="btn btn-lg btn-success">click here</a> 16 to access URL_HREF.</p> 17 <p>Thanks for using WAeUP services!</p> 18 </div> 19 </div> 20 PART_FOOTER 10 21 </body> 11 22 </html> -
main/waeup.cas/trunk/waeup/cas/templates/style.css
r10599 r10612 39 39 border-top-right-radius: 0; 40 40 } 41 .jumbotron { 42 background-color: #fff; 43 }
Note: See TracChangeset for help on using the changeset viewer.