mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 13:41:13 +00:00
60 lines
2.3 KiB
HTML
60 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<link rel="icon" href="../favicon.ico">
|
|
|
|
<title>CS 496</title>
|
|
|
|
<link href="/resources/libs/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="/resources/libs/bootstrap/css/bootstrap-theme.min.css" rel="stylesheet">
|
|
<link href="/framework/ie10-viewport-bug-workaround.css" rel="stylesheet">
|
|
<link href="/framework/gaccount_theme.css" rel="stylesheet">
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container theme-showcase" role="main">
|
|
|
|
<div class="jumbotron">
|
|
<h1 align="center">CS 496 OAUTH 2 Demo Site</h1>
|
|
<h2 align="center">Google Account Page</h2>
|
|
</div>
|
|
|
|
<div class="jumbotron">
|
|
<p align="left">Below you can see the first name, last name, and url to the google account linked via OAuth 2.</p>
|
|
</div>
|
|
|
|
<div id="gplus-output">
|
|
<p>
|
|
First Name: {{first_name}}<br>
|
|
Last Name: {{last_name}}<br>
|
|
Google Plus URL: <a href="{{gplus_url}}">{{gplus_url}}</a><br><br>
|
|
State Variable: {{state_var}}
|
|
</p>
|
|
</div>
|
|
|
|
</div> <!-- /container -->
|
|
|
|
|
|
<!-- Bootstrap core JavaScript
|
|
================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
|
|
<script>window.jQuery || document.write('<script src="../resources/libs/bootstrap/assets/js/vendor/jquery.min.js"><\/script>')</script>
|
|
<script src="../resources/libs/bootstrap/js/bootstrap.min.js"></script>
|
|
<script src="../resources/libs/bootstrap/js/docs.min.js"></script>
|
|
<script src="/framework/ie10-viewport-bug-workaround.js"></script>
|
|
</body>
|
|
</html>
|