-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"Added sample: javascript/my_uploads.html"
- Loading branch information
1 parent
02bd8ba
commit 86af1d0
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>My Uploads</title> | ||
<link rel="stylesheet" type="text/css" href="my_uploads.css"> | ||
</head> | ||
<body> | ||
<div id="login-container" class="pre-auth"> | ||
This application requires access to your YouTube account. | ||
Please <a href="#" id="login-link">authorize</a> to continue. | ||
</div> | ||
<div id="video-container"></div> | ||
<div class="button-container"> | ||
<button id="prev-button" class="paging-button" onclick="previousPage();">Previous Page</button> | ||
<button id="next-button" class="paging-button" onclick="nextPage();">Next Page</button> | ||
</div> | ||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | ||
<script type="text/javascript" src="auth.js"></script> | ||
<script type="text/javascript" src="my_uploads.js"></script> | ||
<script src="https://apis.google.com/js/client.js?onload=googleApiClientReady"></script> | ||
</body> | ||
</html> |